]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/contemporary/graphic-measure-grouping-indications-for-conductors.ly
Merge branch 'master' of ssh+git://hanwen@git.sv.gnu.org/srv/git/lilypond
[lilypond.git] / input / lsr / contemporary / graphic-measure-grouping-indications-for-conductors.ly
1 %%  Do not edit this file; it is auto-generated from LSR!
2 \version "2.11.23"
3
4 \header { texidoc = "
5 In 20th century music, time signatures tend to change frequently and to
6 be more complex. Therefore, printing graphic indications (such as
7 brackets and triangles) above the top staff has become quite useful, if
8 not essential, to conductors or even players. LilyPond is able to do
9 that easily with its integrated Measure_grouping_engraver.
10
11 Beware: you can no longer use the \time command; use instead the
12 #(set-time-signature x x '(x x)) function, which is quite more
13 powerful, especially for compound time signatures such as 5/8.
14 " }
15
16 \new Staff \with {
17     \consists "Measure_grouping_engraver"
18   }
19
20 \relative c' {
21   #(set-time-signature 2 4 '(2 2)) 
22   c8 a'4 a8~
23   #(set-time-signature 5 8 '(3 2)) 
24   a8 bes4 r8 bes8->
25   #(set-time-signature 2 4 '(2 2)) 
26   c,8 g'4 g8~ 
27   #(set-time-signature 5 8 '(3 2)) 
28   g8 a4 g a4.->
29 }