]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/lyrics-bar.ly
* lily/quote-iterator.cc (process): use <= for comparisons. Fixes
[lilypond.git] / input / regression / lyrics-bar.ly
1 \version "2.3.22"
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     raggedright = ##t
12 }
13
14 <<
15     \context Staff=foo \with
16     {
17 %       \remove "Bar_engraver"  
18         }
19     {
20         b1 \bar "|:" b1 \bar ":|"
21     }
22     \context Lyrics \with {
23         \consists "Bar_engraver"
24         \override BarLine #'bar-size = #4 
25     } \lyricmode {
26           looooooooooooooooooooooooooooooooooong1 syllable
27       }
28     \lyrics {
29         no Bar_Engraver_Bar_Engraver_Bar_Engraver 
30     }
31     \context Staff=bar \with {
32 %               \remove "Bar_engraver"  
33     } { b1 b1 }
34 >>
35         
36