]> git.donarmstrong.com Git - lilypond.git/blob - input/new/creating-metronome-marks-in-markup-mode.ly
Merge master into nested-bookparts
[lilypond.git] / input / new / creating-metronome-marks-in-markup-mode.ly
1 \version "2.11.62"
2
3 \header {
4   lsrtags = "staff-notation"
5   texidoc = "New metronome marks can be created in markup mode,
6 but they will not change the tempo in MIDI output."
7
8   doctitle = "Creating metronome marks in markup mode"
9 }
10
11 \relative c' {
12   \tempo \markup {
13     \concat {
14       (
15       \smaller \general-align #Y #DOWN \note #"16." #1
16       " = "
17       \smaller \general-align #Y #DOWN \note #"8" #1
18       )
19     }
20   }
21   c1
22   c4 c' c,2
23 }