MIDI: fix regtest failure
[lilypond/patrick.git] / input / regression / lyrics-aligned-above-stay-close-to-staff.ly
blobe71d5a3456ec6a383cb939feb349e2dcdd02a064
1 \version "2.13.47"
3 \header {
4 title = "Aligned-above lyrics should stay close to their staff"
5 texidoc = "Lyrics aligned above a context should stay close to that
6 context when stretching. The Bass I lyric line stays with the
7 Bass staff.
11 \paper { ragged-last-bottom = ##f }
13 tune = \relative c { \repeat unfold 2 { c4( e) g2 | \break c1 }
14 \bar "|." }
16 \score {
18 \context ChoirStaff <<
20 \new Staff = tenors <<
21 \clef "treble_8"
22 \new Voice = tenori { \voiceOne \tune }
23 \new Voice = tenorii { \voiceTwo \tune }
25 \new Staff = basses <<
26 \clef "bass"
27 \new Voice = bassi { \voiceOne \tune }
28 \new Voice = bassii { \voiceTwo \tune }
31 \new Lyrics \with {alignAboveContext=tenors} \lyricsto tenori {
32 Te -- nor one! A -- _ bove!
34 \new Lyrics \with {alignBelowContext=tenors} \lyricsto tenorii {
35 Te -- nor two! Be -- _ low!
37 \new Lyrics \with {alignAboveContext=basses} \lyricsto bassi {
38 Bas -- ses one! A -- _ bove!
40 \new Lyrics \with {alignBelowContext=basses} \lyricsto bassii {
41 Bas -- ses two! Be -- _ low!
44 \layout {}