]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/beaming-ternary-metrum.ly
b79f75d42d0c12968156e0db4309271f78e73378
[lilypond.git] / input / regression / beaming-ternary-metrum.ly
1
2 \version "2.9.10"
3
4 \header {
5
6   texidoc = "Automatic beaming works also in ternary time sigs. In
7   this case, the 8th is a beat, so the 16ths are split into two
8   groups.  This can be avoided by overriding @code{beatLength} to be 3
9   8th notes."
10
11 }
12
13 \layout { ragged-right = ##t}
14
15 \relative c'' {
16   \time 6/8
17   c8.[ c16 c16 c16] 
18   \set beatLength = #(ly:make-moment 3 8)
19   c8.[ c16 c16 c16] 
20 }
21