]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/conducting-signs,-measure-grouping-signs.ly
Merge branch 'master' of /home/lilycvs/git/lily/
[lilypond.git] / input / lsr / conducting-signs,-measure-grouping-signs.ly
1 %% Do not edit this file; it is auto-generated from LSR!
2 %% Tags: rhythms
3 \version "2.11.35"
4
5 \header { texidoc = "
6 The Scheme function @code{set-time-signature}, in combination with the
7 Measure grouping engraver,  it will create MeasureGrouping signs.  Such
8 signs ease reading rhythmically complex modern music.  In the following
9 example, the 9/8 measure is subdivided in 2, 2, 2 and 3.  This is
10 passed to @code{set-time-signature} as the third argument @code{(2 2 2
11 3)}
12 % begin verbatim
13
14 " }
15
16 \score {
17   \relative c'' {
18     #(set-time-signature 9 8 '(2 2 2 3))
19     g8[ g] d[ d] g[ g] a8[( bes g]) |
20     #(set-time-signature 5 8 '(3 2))
21     a4. g4
22   }
23   \layout {
24     \context {
25       \Staff
26       \consists "Measure_grouping_engraver"
27     }
28   }
29 }
30