]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/measure-grouping.ly
821c7d8e281b1d0d1b5a1808b76f1da1f33cd4c2
[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.1.26"
11
12
13 %% TODO: should have 2/4 + 5/8 time sig style.
14 \score { \notes
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          \paper  {
27              raggedright = ##t
28              \translator { \StaffContext
29                            \consists "Measure_grouping_engraver"
30                            }
31              }
32          }
33