]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/tuplet-full-length-note.ly
Run scripts/auxiliar/update-with-convert-ly.sh
[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.16.0"
10
11 \new RhythmicStaff {
12   \set tupletFullLength = ##t
13   \time 4/4
14   \times 4/5 {
15     c'4 c'1
16   }
17   \set tupletFullLengthNote = ##t
18   \time 2/4
19   \times 2/3 {
20     c4 c c 
21   }
22   \time 3/4
23   c'4 c'4 c'4
24 }