]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/regression/note-line.ly
The grand \paper -> \layout, \bookpaper -> \paper renaming.
[lilypond.git] / input / regression / note-line.ly
index c7c6fe5eb9dbf3a5b35adb3f205265d3fc40368d..377c2138bf00ff1aea172412a0e6196464d09402 100644 (file)
@@ -1,18 +1,18 @@
-\version "1.9.0"
+\version "2.3.22"
 
 \header {
 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
+            \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
@@ -20,8 +20,8 @@ sd = \notes{ \translator Staff = down}
        \context Staff = down {
            \clef F s1*4
        }
-    >
-\paper {
+    >>
+\layout {
     linewidth = 8.0 \cm
 }
 }