]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/measure-grouping.ly
Run scripts/auxiliar/update-with-convert-ly.sh
[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.19.21"
11
12 \layout  {
13   ragged-right = ##t
14 }
15
16 %% TODO: should have 2/4 + 5/8 time sig style.
17
18 \context Staff \with {
19     \consists "Measure_grouping_engraver"
20   }
21
22 \relative {
23   \time 2/4 
24   c'8 a'4 a8~
25   \time #'(3 2) 5/8 
26   a8 bes4 r8 bes8->
27   \time 2/4
28   c,8 g'4 g8~
29   \time #'(3 2) 5/8 
30   g8 a4 g a4.->
31 }
32
33