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