]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/quote-cyclic.ly
Merge branch 'master' into dev/texi2html
[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.11.51"
10
11 A = \relative c' { c4 d e f | \cueDuring #"qB" #1 { R1 } | }
12 B = \relative c' { \cueDuring #"qA" #1 { R1 } | f4 e d c  | }
13
14 \addQuote "qA" \A
15 \addQuote "qB" \B
16
17 \layout { ragged-right = ##t }
18
19 <<
20     \new Staff \A
21     \new Staff \B
22 >>