]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/quote-during-subvoice.ly
00ba9f22d11bee69b01f7d34a96f3150311bd32e
[lilypond.git] / input / regression / quote-during-subvoice.ly
1 \version "2.15.6"
2
3 \header {
4   texidoc = "@code{\\quoteDuring} and @code{\\cueDuring} shall properly quote
5 voices that create a sub-voice. The sub-voice will not be quoted, though.
6 "
7 }
8
9
10 quoteMe = \relative c' {
11   c4 c
12   \new Voice {
13     c4 c
14   }
15 }
16 \addQuote quoteMe \quoteMe
17
18 \relative c'' {
19   c4 \cueDuring #"quoteMe" #DOWN { r4 } % <- show a cue note from quoteMe
20   c4 \cueDuring #"quoteMe" #DOWN { r4 } % <- no cue note due to sub-voice
21 }