]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/regression/note-line.ly
Merge branch 'master' into dev/texi2html
[lilypond.git] / input / regression / note-line.ly
index ac8bffd0de8642b17fdd47ca54dbc9a5bca580dd..47c35f9d095b26e072cea80e33fe79784e2e5266 100644 (file)
@@ -1,29 +1,30 @@
-\version "1.7.18"
+\version "2.11.51"
 
 \header {
-texidoc = "Note head lines (e.g. glissando)
+  texidoc = "Note head lines (e.g. glissando)
 run between centers of the note heads."
 }
 
-su = \notes{ \translator Staff = up}
-sd = \notes{ \translator Staff = down}
+su = { \change Staff = up}
+sd = { \change Staff = down}
 
-\score {
-    \context PianoStaff
-        \notes <
-       \context Staff = up   {
-            \property PianoStaff.connectArpeggios = ##t
-           \showStaffSwitch
-           \clef F
-           c4 d \sd b a g8 f16 e32 d \su g2 \glissando a,4 \sd \break a2. \su g4 \glissando f1
-       }
-       \context Staff = down {
-           \clef F s1*4
-       }
-    >
-\paper {
-    linewidth = 8.0 \cm
-}
+
+\layout {
+  line-width = 8.0 \cm
 }
 
 
+\context PianoStaff
+<<
+  \new Staff = "up"   {
+    \override Glissando #'breakable = ##t
+    \set PianoStaff.connectArpeggios = ##t
+    \showStaffSwitch
+    \clef F
+    c4 d \sd b a g8 f16 e32 d \su g2 \glissando a,4 \sd \break a2. \su g4 \glissando f1
+  }
+  \new Staff = "down" {
+    \clef F s1*4
+  }
+>>
+