]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/note-line.ly
*** empty log message ***
[lilypond.git] / input / regression / note-line.ly
1 \version "2.1.28"
2
3 \header {
4 texidoc = "Note head lines (e.g. glissando)
5 run between centers of the note heads."
6 }
7
8 su = \notes{ \change Staff = up}
9 sd = \notes{ \change Staff = down}
10
11 \score {
12     \context PianoStaff
13         \notes <<
14         \context 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         \context Staff = down {
21             \clef F s1*4
22         }
23     >>
24 \paper {
25     linewidth = 8.0 \cm
26 }
27 }
28
29