]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/quote-tie.ly
Web-ja: update introduction
[lilypond.git] / input / regression / quote-tie.ly
1 \version "2.19.21"
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 {
14   a'1 ~ | 1 | a |
15 }
16 \addQuote "cueI" { \cueI }
17
18 cueII = \relative {
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 }