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