Compile fix.
[lilypond.git] / input / new / changing-the-tempo-without-a-metronome-mark.ly
blobbc873657d2d8c3f18c791a07c874e7acc1c2116a
1 \version "2.11.62"
3 \header {
4 lsrtags = "staff-notation"
5 texidoc = "To change the tempo in MIDI output without printing
6 anything, make the metronome mark invisible, as in the following
7 example:"
9 doctitle = "Changing the tempo without a metronome mark"
12 \score {
13 \new Staff \relative c' {
14 \tempo 4 = 160
15 c4 e g b
16 c4 b d c
17 \set Score.tempoHideNote = ##t
18 \tempo 4 =96
19 d,4 fis a cis
20 d4 cis e d
22 \midi { }
23 \layout { }