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