]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/quote-tie.ly
5f7a07525ed3753f529700326e1e84ab7de420b7
[lilypond.git] / input / regression / quote-tie.ly
1 \version "2.9.7"
2
3 \header {
4
5   texidoc = " Voices from different cues must not be tied together. In
6 this example, the first note has a tie. This note should not be tied
7 to the 2nd note. "
8
9 }
10
11 \paper {
12   ragged-right = ##t
13 }
14
15 cueI = \relative c'' {
16   a1 ~ | a | a |
17 }
18 \addquote "cueI" { \cueI }
19
20 cueII = \relative c' {
21   R1 | e | a |
22 }
23 \addquote "cueII" { \cueII }
24
25 \new Staff {
26   \cueDuring "cueI" #UP { R1 } |
27   R1
28   \cueDuring "cueII" #UP { R1 } |
29 }