]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/measure-grouping.ly
Make the length of beamlets configurable.
[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.11.51"
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 c' {
23   #(set-time-signature 2 4) 
24   c8 a'4 a8~
25   #(set-time-signature 5 8 '(3 2)) 
26   a8 bes4 r8 bes8->
27   \time 2/4
28   c,8 g'4 g8~
29   #(set-time-signature 5 8 '(3 2)) 
30   g8 a4 g a4.->
31 }
32
33