summaryrefslogtreecommitdiff
path: root/input/regression/measure-grouping.ly
blob: 270b5bc73d2cf15c899d98a8e459812db54ce04d (about) (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
\header
{

  texidoc = "The @code{Measure_grouping_engraver} adds triangles and
brackets above beats when the beats of a time signature are grouped.  "

}

\version "2.19.21"

\layout  {
  ragged-right = ##t
}

%% TODO: should have 2/4 + 5/8 time sig style.

\context Staff \with {
    \consists "Measure_grouping_engraver"
  }

\relative {
  \time 2/4 
  c'8 a'4 a8~
  \time #'(3 2) 5/8 
  a8 bes4 r8 bes8->
  \time 2/4
  c,8 g'4 g8~
  \time #'(3 2) 5/8 
  g8 a4 g a4.->
}