% Created on Tue Jan 12 13:57:52 NZDT 2010 \version "2.13.10" %#(set-default-paper-size "a4" ) %#(set-global-staff-size 16) \header { title = " " tagline = " " } \paper { } global = { \key f \minor \override Staff.TimeSignature #'style = #'() } unison = \relative c' { R1 \once \override TextScript #'outside-staff-padding = #1.5 % This shifts the "ALL" vertically r2^\markup { \hspace #-25 \bold \large "All" } % This shifts "All" horizontally % Using \vspace doesn't shift "All" at all but makes its bounding box bigger % The usage of \hspace and \vspace seem to be inconsistent / non-intuitive. r4 c8\noBeam c des4 ees f4. g8 } unisonWords = \lyricmode { One two three four five six } \score { \new Staff << \new Voice = "sopranos" { << \global \unison >> } \new Lyrics \lyricsto sopranos \unisonWords >> } \layout { ragged-right = ##f }