]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/note-line.ly
Fix off-by-one error in constrained-breaking.
[lilypond.git] / input / regression / note-line.ly
1 \version "2.10.0"
2
3 \header {
4   texidoc = "Note head lines (e.g. glissando)
5 run between centers of the note heads."
6 }
7
8 su = { \change Staff = up}
9 sd = { \change Staff = down}
10
11
12 \context PianoStaff
13 <<
14   \new Staff = "up"   {
15     \set PianoStaff.connectArpeggios = ##t
16     \showStaffSwitch
17     \clef F
18     c4 d \sd b a g8 f16 e32 d \su g2 \glissando a,4 \sd \break a2. \su g4 \glissando f1
19   }
20   \new Staff = "down" {
21     \clef F s1*4
22   }
23 >>
24   \layout {
25     line-width = 8.0 \cm
26   }
27
28
29