Extending tempo: Difference between revisions
Appearance
Import snippet from LSR |
m Replace version="2.24.0" with version="2.24" now that the LilyWiki extension supports auto-selecting the latest release in a stable series |
||
| Line 1: | Line 1: | ||
The Tempo marking may include a markup to create a more complex marking indicating tempo for more complex rythms. | The Tempo marking may include a markup to create a more complex marking indicating tempo for more complex rythms. | ||
<lilypond version="2.24 | <lilypond version="2.24"> | ||
% Create a more complex Tempo marking | % Create a more complex Tempo marking | ||
% The markup-command can be used to create a non standard Tempo | % The markup-command can be used to create a non standard Tempo | ||
Revision as of 18:51, 16 November 2025
The Tempo marking may include a markup to create a more complex marking indicating tempo for more complex rythms.
\version "2.24"
% Create a more complex Tempo marking
% The markup-command can be used to create a non standard Tempo
% Be aware that this Tempo does not have influence on a MIDI-export
\relative c'' {
\tempo \markup {
\concat {
\bold "Andante appasionata "
"("
\lower #-0.5 \note {4} #UP
" ("
\lower #-0.5 \note {4.} #UP
") = 42)"
}
}
a1
}