]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/quote-tuplet-end.ly
Merge commit 'origin' into includes
[lilypond.git] / input / regression / quote-tuplet-end.ly
1 \header
2 {
3   texidoc  ="Tuplet bracket ends properly when quoting."
4 }
5
6 \version "2.12.0"
7
8 \paper { ragged-right = ##t }
9
10 \addQuote x {
11    \times 2/3 { a'8 a' a' } a'4 a'2 |
12 }
13
14 \new Staff <<
15    \set Staff.quotedEventTypes = #'(note-event tuplet-span-event)
16    \new Voice = "cue" { s1 }
17    \new Voice {
18        \cueDuring #"x" #1 { r4 }
19        c'4
20        \cueDuring #"x" #1 { r2 }
21    }
22 >>