]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/measure-grouping.ly
Update blank sheet music example again.
[lilypond.git] / input / regression / measure-grouping.ly
1
2 \header
3 {
4
5   texidoc = "The @code{Measure_grouping_engraver} adds triangles and
6 brackets above beats when the beats of a time signature are grouped.  "
7
8 }
9
10 \version "2.10.0"
11
12
13 %% TODO: should have 2/4 + 5/8 time sig style.
14
15 \context Staff
16 \relative c' {
17   #(set-time-signature 2 4) 
18   c8 a'4 a8~
19   #(set-time-signature 5 8 '(3 2)) 
20   a8 bes4 r8 bes8->
21   \time 2/4
22   c,8 g'4 g8~
23   #(set-time-signature 5 8 '(3 2)) 
24   g8 a4 g a4.->
25 }
26 \layout  {
27   ragged-right = ##t
28   \context { \Staff
29              \consists "Measure_grouping_engraver"
30            }
31 }
32
33