]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/changing-the-tempo-without-a-metronome-mark.ly
Merge master into nested-bookparts
[lilypond.git] / input / lsr / changing-the-tempo-without-a-metronome-mark.ly
1 %% Do not edit this file; it is auto-generated from input/new
2 %% This file is in the public domain.
3 \version "2.11.62"
4
5 \header {
6   lsrtags = "staff-notation"
7   texidoc = "To change the tempo in MIDI output without printing
8 anything, make the metronome mark invisible:"
9
10   doctitle = "Changing the tempo without a metronome mark"
11 } % begin verbatim
12
13 \score {
14   \new Staff \relative c' {
15     \tempo 4 = 160
16     c4 e g b
17     c4 b d c
18     \set Score.tempoHideNote = ##t
19     \tempo 4 = 96
20     d,4 fis a cis
21     d4 cis e d
22   }
23   \layout { }
24   \midi { }
25 }