]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/regression/quote-cyclic.ly
Docs: run convert-ly for 2.14.0.
[lilypond.git] / input / regression / quote-cyclic.ly
index 9006602dfa98333fd1a978c7d8b089919bf34136..492182acab0f62de6acea86b3313b4045d5b4bad 100644 (file)
@@ -1,23 +1,17 @@
+\version "2.14.0"
 
 \header {
-
-    texidoc = "Two quoted voices may refer to each other. In this
+  texidoc = "Two quoted voices may refer to each other. In this
 example, there are notes with each full-bar rest."
-         
 }
-\version "2.3.17"
-A = \relative c' { c4 d e f | << R1            \\
-                                \quote "qB" 1 >> | }
-B = \relative c' { << R1            \\
-                     \quote "qA" 1 >> | f4 e d c | }
 
-\addquote "qA" \A
-\addquote "qB" \B
+A = \relative c' { c4 d e f | \cueDuring #"qB" #1 { R1 } | }
+B = \new Voice \relative c' { \cueDuring #"qA" #1 { R1 } | f4 e d c | }
 
-\paper { raggedright = ##t }
+\addQuote "qA" \A
+\addQuote "qB" \B
 
 <<
-    \context Staff = "A" \A
-    \context Staff = "B" \B
+  \new Staff \A
+  \new Staff \B
 >>