]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/beam-beat-grouping.ly
Merge branch 'lilypond/translation' of ssh://git.sv.gnu.org/srv/git/lilypond into...
[lilypond.git] / input / regression / beam-beat-grouping.ly
1 \header {
2
3   texidoc = "Default beaming patterns can be set for the current time
4 signature by @code{\\setBeatGrouping}. "
5   }
6
7 \layout {
8   ragged-right = ##t
9   }
10 \version "2.13.4"
11
12
13 \relative c'' {
14   \time 5/16
15   \setBeatGrouping  #'(2 3)
16   c8[^"(2+3)" c16 c8]
17   \setBeatGrouping  #'(3 2)
18   c8[^"(3+2)" c16 c8]
19 }