]> git.donarmstrong.com Git - lilypond.git/blob - input/test/barline-lyric-only.ly
update syntax in .ly files.
[lilypond.git] / input / test / barline-lyric-only.ly
1 \version "1.7.6"
2 \header {
3
4 texidoc = "You can move around Bar_engraver and
5 Span_bar_engraver if you want bar lines on lyrics."  }
6
7
8 \score {
9 \notes \relative c' \context StaffGroup = groupie <
10  \context Staff = SA { c1 c1 c1}
11  \context Lyrics \lyrics <
12   { bla1 die bla }
13   { foo bar foo }
14   { foo bar foo }  
15  >
16  \context Staff = SB { c1 c1 c1} 
17
18  > 
19
20
21 \paper  {
22 \translator {
23   \LyricsVoiceContext
24   \consists Bar_engraver
25   % need procedure, since lyrics doesn't have a staff_sym engraver.
26   BarLine \override #'bar-size-procedure = #(lambda (x) 3.0)
27 }
28
29 \translator {
30   \LyricsContext
31   \consists "Span_bar_engraver"
32 }
33 \translator{
34   \StaffGroupContext
35   \remove "Span_bar_engraver"
36 }
37 }}
38 %% new-chords-done %%