]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/quote-tuplet.ly
Merge branch 'master' into dev/texi2html
[lilypond.git] / input / regression / quote-tuplet.ly
1
2 \version "2.11.51"
3
4 \header {
5
6   texidoc = "In cue notes, Tuplet stops are handled before new tuplets
7   start."
8
9 }
10
11 foo = \relative {
12   \times 2/3 { c4 c c } \times 2/3 { c4 c c }
13 }
14
15 \addQuote "foo" { \foo }
16
17 \paper {
18   ragged-right = ##t
19 }
20
21 \new Staff
22 <<
23   \new Voice \transpose c c' {
24     \override Stem #'direction = #UP
25     \foo
26   }
27   \new Voice {
28     \cueDuring #"foo" #DOWN { s1 }
29   }
30 >>
31