]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/measure-grouping.ly
2eca7d467f055904b486c56faba25805d7e6e83e
[lilypond.git] / input / regression / measure-grouping.ly
1 \header
2 {
3 texidoc = "The Measure_grouping_engraver adds triangles and brackets above beats
4 when you set beatGrouping.
5
6 (unfinished.)
7 "
8 }
9 \score { \notes
10 \context Staff
11          {
12              \time 8/4
13              \property Staff.beatGrouping = #'(3 3) 
14              c4 c c c
15              c4
16              \property Staff.beatGrouping = #'()
17              c c c
18              
19          }
20          \paper  {
21              \translator { \StaffContext
22                            \consists "Measure_grouping_engraver"
23                            }
24              }
25          }