]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/tuplet-full-length.ly
Merge branch 'master' of git+ssh://jneem@git.sv.gnu.org/srv/git/lilypond
[lilypond.git] / input / regression / tuplet-full-length.ly
1
2 \header {
3
4   texidoc = "If @code{tupletFullLength} is set, tuplets end at the
5 start of the next non-tuplet note.  "
6
7 }
8 \version "2.11.10"
9
10 \paper { ragged-right = ##t
11 indent = 0.0 }
12
13 \relative c'' \new Voice \with {
14   \remove  Forbid_line_break_engraver
15   \override Beam #'breakable = ##t
16 }
17 {
18   \set tupletFullLength = ##t
19   c4
20   \times 2/3 { c8[ c c] }
21   \times 2/3 { c8[ c \bar "empty" \break c] }
22   << \times 2/3 { c8[ c c]  }
23      { s4*5/6 \bar "empty" \break } >>
24   c4
25   \times 2/3 { c8[ c c] }
26   
27   \bar "|." \key c\minor
28 }
29