]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/quote-cyclic.ly
release commit
[lilypond.git] / input / regression / quote-cyclic.ly
1
2 \header {
3
4     texidoc = "Two quoted voices may refer to each other. In this
5 example, there are notes with each full-bar rest."
6           
7  
8 }
9 \version "2.3.14"
10 A = \relative c' { c4 d e f | << R1            \\
11                                  \quote "qB" 1 >> | }
12 B = \relative c' { << R1            \\
13                       \quote "qA" 1 >> | f4 e d c | }
14
15 \addquote "qA" \A
16 \addquote "qB" \B
17
18 \paper { raggedright = ##t }
19
20 <<
21     \context Staff = "A" \A
22     \context Staff = "B" \B
23 >>