\version "2.18.2" global = { \autoBeamOff \key g \minor \time 3/4 } sopranoMusic = \relative bes' { \clef "treble" c4 c c \repeat volta 2 { d d d es\(( e) des\) bes \breathe bes bes } \alternative { { e c bes d d d c d c } { \once \override TextScript #'extra-offset = #'(3 . -4) a^\markup {\fontsize #5 \override #'(thickness . 2) \combine \draw-line #'(0 . 4) \arrow-head #Y #DOWN ##f} c e \once \override TextScript #'extra-offset = #'(3 . -4) d^\markup {\fontsize #5 \override #'(thickness . 2) \combine \draw-line #'(0 . -4) \arrow-head #Y #UP ##f} d8 e d4 c c2 \bar "|." } } } sopranoWordsOne = \lyricmode { \skip4 \skip4 \skip4 "1. er" -- ste Stroph', die __ \skip4 ei -- nen an -- de -- ren Text hat und so und ja ja! } sopranoWordsTwo = \lyricmode { Das ist die "2. zwei" -- te Stro -- phe __ \skip4 auch mit Text und so und ja und ja und so so! } sopranoWordsThree = \lyricmode { \skip4 \skip4 \skip4 "3. drit" -- \skip4 te Stro -- \skip4 phe mit neu -- em Text und ja und so und ja nein! } altoMusic = \relative bes' { \clef "treble" a4 a a \repeat volta 2 { g g g es\(( e) des\) g2\breathe g4 } \alternative { { c a g bes bes bes a bes a } { a c e d d8 e d4 c c2 \bar "|." } } } altoWordsOne = \lyricmode { \skip4 \skip4 \skip4 \skip4 \skip4 \skip4 \skip4 \skip4 \skip4 \skip4 \skip4 \skip4 \skip4 \skip4 \skip4 \skip4 \skip4 \skip4 \skip4 \skip4 "... und" nun geht's für alle __ \skip4 hier weiter, ja! } %altoWordsTwo = \lyricmode { % \skip4 \skip4 \skip4 % Das ist die zwei -- \skip4 te Li -- nie % \repeat unfold 9 \skip4 % tral -- la % tral -- la tral -- la -- la -- la -- laaaa! %} \score { \new Staff = women << \set Staff.instrumentName = \markup { \center-column { \line {"Sopran"} \line {"Alt"} } } \set Staff.shortInstrumentName = \markup { \center-column { \line {"S"} \line {"A"} } } \context Staff << \context Voice = "Soprano" { \voiceOne \sopranoMusic } \new Lyrics \with { alignAboveContext = women} \lyricsto "Soprano" \sopranoWordsOne \new Lyrics \with { alignAboveContext = women} \lyricsto "Soprano" \sopranoWordsTwo \new Lyrics \with { alignAboveContext = women} \lyricsto "Soprano" \sopranoWordsThree \context Voice = "Alto" { \voiceTwo \altoMusic } \new Lyrics \with { alignBelowContext = women} \lyricsto "Alto" \altoWordsOne >> >> }