LSR: Update.
[lilypond.git] / input / lsr / conducting-signs,-measure-grouping-signs.ly
blob3f047d25c9d26c69f3f49407a0597b5c502a5e6f
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"
5 \header {
6 lsrtags = "rhythms"
8 texidoc = "
9 The Scheme function @code{set-time-signature}, in combination with the
10 @code{Measure_grouping_engraver}, creates measure grouping signs. Such
11 signs ease reading rhythmically complex modern music. In the following
12 example, the 9/8 measure is subdivided into 2, 2, 2 and 3 beats. This
13 is passed to @code{set-time-signature} as the third argument @code{(2 2
14 2 3)}.
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
32 \layout {
33 \context {
34 \Staff
35 \consists "Measure_grouping_engraver"