]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/regression/alignment-order.ly
Replace internal_get_property with get_property where possible
[lilypond.git] / input / regression / alignment-order.ly
index 3291b018c5a4e0847c3f4efd81994936b68e7f16..5a6be94daff256e559067690e8153f6fee75f356 100644 (file)
@@ -3,25 +3,30 @@
 anywhere in the vertical alignment. "
 }
 
-\version "2.5.23"
+\version "2.17.15"
 
 \paper {
-  raggedright = ##t
+  ragged-right = ##t
 }
 
-\relative <<
-  \context Staff = "1" { c4 c s2 }
-  \context Staff = "2" { c  c s2 }
-  \context Staff = "3" { c  c s2 }
-  { \skip 2
+\relative c' <<
+  \new Staff = "1" { c2 c s1 }
+  \new Staff = "2" { c2  c s1 }
+  \new StaffGroup <<
+    \new Staff = "3" { c2  c s1 }
+    { \skip 1
     <<
       \lyrics {
-       \set alignBelowContext = #"1"
-       below8 first staff
+        \set alignBelowContext = #"1"
+        below4 first staff
       }
-      \lyrics {
-       \set alignAboveContext = #"3"
-       above8 last staff
+      \new Staff {
+        \set Staff.alignAboveContext = #"3"
+        \tuplet 6/4 {
+          \override TextScript.padding = #3
+          c4^"this" d_"staff" e^"above" d_"last" e^"staff" f
+        }
       }
     >> }
+  >>
 >>