\version "2.19.82" \include "lyric-syllable-magnetic-snap.ily" \layout { \context { \Lyrics \override LyricExtender.minimum-length = #1 \override LyricWord.after-line-breaking = #(lyric-word-compressor 0.5) \override LyricHyphen.minimum-distance = #0.5 } } #(set-global-staff-size 16) sopI = { e'4 d'4 g'4 f'4 | % 87 e'4 d'8 d'8 cis'4( d'4 ~ | % 88 d'4 cis'4) d'2 | % 89 r4 d''4 c''4 f''4 ~ | % 90 f''8 es''8 d''8 c''8 bes'4 c''4 | % 91 fis'4 ( bes'4 a'2 ) | % 92 g'1 \breathe | % 93 d''2 e''2 | % 94 f''4 d''4 c''4 c''8 c''8 | % 95 es''2 d''2 | % 96 d''1 | % 97 } lyrSI = \lyricmode { wie -- der an das -- sel -- bi -- ge En -- de, und bleibt nichts vor ih -- rer Hitz ver -- bor -- gen. Die Him -- mel er -- zäh -- len die Eh -- re Got } alt = { g2 g2 | % 87 g2 a4 bes8 bes8 | % 88 a2 d'2 \breathe | % 89 d'4 bes4 f'4. es'8 | % 90 d'8 c'8 bes4 es'2 | % 91 d'1 | % 92 g1 \breathe | % 93 g'2 g'2 | % 94 f'4 f'4 f'4 f'8 f'8 | % 95 g'2. g'4 | % 96 fis'1 | % 97 } lyrA = \lyricmode { der an das -- sel -- bi -- ge En -- de, % This shows the bug: und bleibt nichts vor ih -- rer Hitz ver -- bor -- gen. % This works fine (alignment-wise): % und bleibt nichts vor ih -- rer Hitz ver bor -- gen. Die Him -- mel er -- zäh -- len die Eh -- re Got } \score { \new ChoirStaff << \new Staff << \new Voice = "sopI" \sopI >> \new Lyrics \lyricsto "sopI" \lyrSI \new Staff << \new Voice = "alt" \alt >> \new Lyrics \lyricsto "alt" \lyrA >> \layout { \context { \Lyrics \override LyricWord.stencil = #ly:lyric-word::boxer } } }