]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/quote-tie.ly
Imported Upstream version 2.14.2
[lilypond.git] / input / regression / quote-tie.ly
1 \version "2.14.0"
2
3 \header {
4   texidoc = "Voices from different cues must not be tied together.  In
5 this example, the first note has a tie.  This note should not be tied
6 to the second visible note (following the rest).
7 Note that this behavior will not hold for cues in direct succession,
8 since only one @code{CueVoice} context is created
9 (with @code{context-id} `cue').
10 "
11 }
12
13 cueI = \relative c'' {
14   a1 ~ | a | a |
15 }
16 \addQuote "cueI" { \cueI }
17
18 cueII = \relative c' {
19   R1 | e | a |
20 }
21 \addQuote "cueII" { \cueII }
22
23 \new Staff \new Voice {
24   \cueDuring "cueI" #UP { R1 } |
25   R1
26   \cueDuring "cueII" #UP { R1 } |
27 }