]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/test/polymetric-differing-notes.ly
* Documentation/user/lilypond-book.itely
[lilypond.git] / input / test / polymetric-differing-notes.ly
index e519f3665e464652e69e454044170fd45996d044..ff3fc8572a70858453ad7c094f817d642d4583af 100644 (file)
@@ -1,4 +1,5 @@
-\version "1.7.18"
+#(ly:set-option 'old-relative)
+\version "1.9.8"
 
 \header{ texidoc="
 
@@ -45,26 +46,26 @@ what happens on the inside: a 3/4 time signature is combined with a
 
 
 \score {
-    \notes \relative c'  <
-       \context Staff= AS {
+    \notes \relative c'  <<
+       \new Staff {
            \time 3/4
            c4 c c | c c c |
        }
-       \context Staff= BS {
+       \new Staff {
            \time 3/4
            \property Staff.timeSignatureFraction= #'(9 . 8)
            \apply #display-music \apply #(scale-music-function '(2 . 3))
-             \repeat unfold 6 { c8-[ c c-] }
+             \repeat unfold 6 { c8[ c c] }
        }
        
-       \context Staff= DS {
+       \new Staff {
            \time 3/4
            \property Staff.timeSignatureFraction= #'(10 . 8)
            \apply #display-music \apply #(scale-music-function '(3 . 5))
-             { \repeat unfold 2 { c8-[ c c-] }
-               \repeat unfold 2 { c8-[  c-] }
+             { \repeat unfold 2 { c8[ c c] }
+               \repeat unfold 2 { c8[  c] }
                |  c4. c4. \times 2/3 { c8 c c } c4  }
        }
-       >
+       >>
        \paper { raggedright = ##t }
 }