Jump to content

Creating metronome marks in markup mode: Difference between revisions

From LilyPond wiki
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:
New metronome marks can be created in markup mode, but they will not change the tempo in MIDI output.
New metronome marks can be created in markup mode, but they will not change the tempo in MIDI output.


<lilypond version="2.24.0">
<lilypond version="2.24">
\relative c' {
\relative c' {
   \tempo \markup {
   \tempo \markup {

Revision as of 18:47, 16 November 2025

New metronome marks can be created in markup mode, but they will not change the tempo in MIDI output.

\version "2.24"

\relative c' {
  \tempo \markup {
    \concat {
      (
      \smaller \general-align #Y #DOWN \note { 16. } #UP
      " = "
      \smaller \general-align #Y #DOWN \note { 8 } #UP
      )
    }
  }
  c1
  c4 c' c,2
}