Jump to content

Write text on the right of a staff: Difference between revisions

From LilyPond wiki
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
No edit summary
Line 15: Line 15:
</lilypond>
</lilypond>


[[Category:Text]]
[[Category:Text]][[Category:Snippet]]

Revision as of 23:03, 21 November 2025

\set Staff.instrumentName allows to write on the left side only.

\version "2.24"

\layout {
  ragged-right = ##f % use all the space
}
\relative c' {
 \time 6/8 \key g \major
 {
  d8 g a b4 b8 \bar "|" c4. c8 g a b4. \bar "|." 
  \override TextScript.extra-offset = #'(3 . 9) \override TextScript.font-size = #3
  s8-\markup { \whiteout \pad-markup #5.2  "29" }
 }
}