]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/lyrics-bar.ly
Fix 1229 Ensure space around prefatory matter
[lilypond.git] / input / regression / lyrics-bar.ly
1 \version "2.13.48"
2
3 \header{
4 texidoc="
5 Adding a @code{Bar_engraver} to the Lyrics context makes sure that
6 lyrics do not collide with barlines.
7 "
8 }
9
10 \layout {
11     ragged-right = ##t
12 }
13
14 <<
15     \new Staff {
16         b1 \bar "|:" b1 \bar ":|"
17     }
18     \context Lyrics \with {
19         \consists "Bar_engraver"
20         \consists "Separating_line_group_engraver"
21     } \lyricmode {
22           looooooooooooooooooooooooooooooooooong1 syllable
23       }
24     \lyrics {
25         no Bar_Engraver_Bar_Engraver_Bar_Engraver
26     }
27     \new Staff {
28         b1 b1
29     }
30 >>
31 \layout {
32   \context {
33     \Lyrics
34       \override VerticalAxisGroup #'nonstaff-nonstaff-spacing #'minimum-distance = #4
35       \override LyricText #'Y-offset = #-0.7
36       \override BarLine #'bar-extent = #'(-2 . 2)
37   }
38 }
39