]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/follow-voice-break.ly
* lily/beam-engraver.cc: move new-beam-event to beam-event
[lilypond.git] / input / regression / follow-voice-break.ly
1
2 \version "1.9.1"
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             \property PianoStaff.followVoice = ##t          
14                 \context Staff=one \notes\relative c''{
15                     a1 \break
16                     \translator Staff=two
17                     a,
18                 }
19         \context Staff=two { \clef bass \skip 1*2 }
20     >
21     \paper{
22         raggedright = ##t
23     }
24 }