Jump to content

Combining dynamics with markup texts

From LilyPond wiki
Revision as of 15:42, 12 December 2025 by Lemzwerg (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Some dynamics may involve text indications (such as “più forte” or “piano subito”). These can be produced using a \markup block.

\version "2.24"

piuF = \markup { \italic più \dynamic f }

\markup \with-true-dimensions % work around a cropping issue
\score {
  \relative c'' {
    c2\f c-\piuF
  }
}