]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/creating-metronome-marks-in-markup-mode.ly
Merge master into nested-bookparts
[lilypond.git] / input / lsr / creating-metronome-marks-in-markup-mode.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 = "New metronome marks can be created in markup mode,
8 but they will not change the tempo in MIDI output."
9
10   doctitle = "Creating metronome marks in markup mode"
11 } % begin verbatim
12
13 \relative c' {
14   \tempo \markup {
15     \concat {
16       (
17       \smaller \general-align #Y #DOWN \note #"16." #1
18       " = "
19       \smaller \general-align #Y #DOWN \note #"8" #1
20       )
21     }
22   }
23   c1
24   c4 c' c,2
25 }