]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/follow-voice-break.ly
*** empty log message ***
[lilypond.git] / input / regression / follow-voice-break.ly
1
2 \version "2.1.22"
3 \header{
4        texidoc = "
5 When put across line breaks, only the part before the line break is
6 printed. The line-spanners connects to the Y position of the note  on the next line.
7 "
8
9 }
10
11 \score{
12         \context PianoStaff <<
13             \set PianoStaff.followVoice =  ##t      
14                 \context Staff=one \notes\relative c''{
15                     a1 \break
16                     \change Staff=two
17                     a,
18                 }
19         \context Staff=two { \clef bass \skip 1*2 }
20     >>
21     \paper{
22         raggedright = ##t
23     }
24 }