]> git.donarmstrong.com Git - lilypond.git/blob - input/new/changing-the-tempo-without-a-metronome-mark.ly
Docs: Update for staff.itely
[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, as in the following
7 example:"
8
9   doctitle = "Changing the tempo without a metronome mark"
10 }
11
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
21   }
22   \midi { }
23   \layout { }
24 }