]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/tuplet-full-length-note.ly
Issue 5167/6: Changes: show \markup xxx = ... \etc assignments
[lilypond.git] / input / regression / tuplet-full-length-note.ly
1 \header {
2
3
4   texidoc = "tuplet can be made to run to prefatory matter or
5 the next note, by setting @code{tupletFullLengthNote}."
6
7   }
8
9 \version "2.17.11"
10
11 \new RhythmicStaff {
12   \set tupletFullLength = ##t
13   \time 4/4
14   \tuplet 5/4 {
15     c'4 c'1
16   }
17   \set tupletFullLengthNote = ##t
18   \time 2/4
19   \tuplet 3/2 {
20     c4 c c 
21   }
22   \time 3/4
23   c'4 c'4 c'4
24 }