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