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