]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/test/poly-metric.ly
rename.
[lilypond.git] / input / test / poly-metric.ly
index 9cc454de71e13c1d788f7acdfde8548fed478b57..86286d5b8e7ec7717efec14e78e4c63929ad144b 100644 (file)
@@ -1,34 +1,43 @@
-\version "1.7.7"
-\header {
-    texidoc = "Polymetric music with aligned note values can be written
- by moving the timing engraver to staff context."
-}
+\version "1.7.18"
 
-\score {
+\header{ texidoc="@cindex Time Signature Multiple
+You can have multiple time signatures occuring at the same time.
 
-    \notes
-    <
-       \context Staff = SA
-       {
-           \time 4/4
-       c1 c1 c1
-       \bar "|."
-    }
-    \context Staff= SB {
-       \time 3/4
-       c2. c2.  c2. c2.
-       \bar "|."
-    }
+This is done by moving the timing engraver to staff context. Also,
+Staff should be given the alias @code{Timing} to make @code{\time}
+command work correctly.
+
+Barlines distort the regular spacing, though.
+
+" }
 
-    >           
+\score{
+    \notes \relative c'  <
+       \context Staff= AS {
+           \time 3/4
+           c4 c c | c c c |
+       }
+       \context Staff=BS {
+           \time 2/4
+           c4 c | c c | c c
+       }
+       \context Staff =CS {
+           \time 3/8
+           c4. c8 c c   c4. c8 c c
+       }
+    >
 
     \paper{
-    \translator{ \ScoreContext
-    \remove "Timing_engraver" }
-    \translator{ \StaffContext
-    \consists "Timing_engraver"
-    \alias Timing
-}
-}
+       raggedright = ##t
+       \translator{
+           \ScoreContext
+           \remove "Timing_engraver"
+       }
+       \translator{
+           \StaffContext
+           \consists "Timing_engraver"
+           \alias "Timing"
+       }
+    }
 }
-%% new-chords-done %%
+