Jump to content

Combining dynamics with markup texts

From LilyPond wiki
Revision as of 22:38, 26 October 2025 by Jean Abou Samra (talk | contribs) (Import snippet from LSR)
(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.0"

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

\layout { ragged-right = ##f }

\relative c'' {
  c2\f c-\piuF
}