]> git.donarmstrong.com Git - lilypond.git/blob - input/test/poly-metric.ly
Add texidoc index and a few comments.
[lilypond.git] / input / test / poly-metric.ly
1 \version "1.7.18"
2 \header { texidoc = "@cindex Poly Metric
3 Polymetric music with aligned note values can be written
4 by moving the timing engraver to staff context. "
5 }
6
7 \score {
8
9     \notes
10     <
11         \context Staff = SA
12         {
13             \time 4/4
14         c1 c1 c1
15         \bar "|."
16     }
17     \context Staff= SB {
18         \time 3/4
19         c2. c2.  c2. c2.
20         \bar "|."
21     }
22
23     >            
24
25     \paper{
26     \translator{ \ScoreContext
27             \remove "Timing_engraver" }
28     \translator{ \StaffContext
29             \consists "Timing_engraver"
30             \alias Timing }
31         raggedright= ##t
32         }
33 }
34 %% new-chords-done %%