]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/autobeam-3-4-rules.ly
Merge branch 'fixedtranslation' into HEAD
[lilypond.git] / input / regression / autobeam-3-4-rules.ly
1 \version "2.15.31"
2
3 \header {
4
5   doctitle = "Special beaming rules for 3/4 time"
6
7   texinfo = "
8 Whole-measure and half-measure beaming in 3/4 time can be controlled.
9 The first measure should be beamed in one.  The second measure should
10 be beamed in three.  The third and fourth measures should be beamed
11 at 3/8.
12   "
13
14 }
15
16 \relative c' {
17     \time 3/4
18     c8^\markup "Beam in one" c c c c c
19     \set Timing.beamWholeMeasure = ##f
20     c8^\markup "Beam in three" c c c c c
21     \set Timing.beamHalfMeasure = ##t
22     r4.^\markup "Beam in Two" c8 c c
23     c8 c c  r4.
24 }