]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/tuplet-full-length.ly
Make format for key changes consistent; minor formatting corrections for affected...
[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.17.11"
9
10 \paper { ragged-right = ##t
11   indent = 0.0
12 }
13
14 \relative c'' \new Voice \with {
15   \remove  Forbid_line_break_engraver
16   \override Beam.breakable = ##t
17 }
18 {
19   \set tupletFullLength = ##t
20   c4
21   \tuplet 3/2 { c8[ c c] }
22   \tuplet 3/2 { c8[ c \bar "-" \break c] }
23   << \tuplet 3/2 { c8[ c c]  }
24      { s4*5/6 \bar "-" \break } >>
25   c4
26   \tuplet 3/2 { c8[ c c] }
27   
28   \bar "|." \key c \minor
29 }