]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/conducting-signs,-measure-grouping-signs.ly
Merge branch 'master' into lilypond/translation
[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.62"
4
5 \header {
6   lsrtags = "rhythms"
7
8   texidoc = "
9 Options to group beats within a bar are available through the Scheme
10 function @code{set-time-signature}, which takes three arguments: the
11 number of beats, the beat length, and the internal grouping of beats in
12 the measure.  If the @code{Measure_grouping_engraver} is included, the
13 function will also create @code{MeasureGrouping} signs.  Such signs
14 ease reading rhythmically complex modern music.  In the example, the
15 9/8 measure is subdivided in 2, 2, 2 and 3.  This is passed to
16 @code{set-time-signature} as the third argument: @code{'(2 2 2 3)}:
17
18 "
19   doctitle = "Conducting signs, measure grouping signs"
20 } % begin verbatim
21 \score {
22   \relative c'' {
23     #(set-time-signature 9 8 '(2 2 2 3))
24     #(revert-auto-beam-setting '(end * * 9 8) 3 8)
25     #(override-auto-beam-setting '(end 1 8 9 8) 1 4)
26     #(override-auto-beam-setting '(end 1 8 9 8) 2 4)
27     #(override-auto-beam-setting '(end 1 8 9 8) 3 4)
28     g8 g d d g g a( bes g) |
29     #(set-time-signature 5 8 '(3 2))
30     a4. g4
31   }
32   \layout {
33     \context {
34       \Staff
35       \consists "Measure_grouping_engraver"
36     }
37   }
38 }