]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/regression/quote-during.ly
Docs: run convert-ly for 2.14.0.
[lilypond.git] / input / regression / quote-during.ly
index 6803c3771e9b792220c1558f005a258a1a19ad28..3abc0eb6338a989b33136cde65e3b9fc56356106 100644 (file)
@@ -4,11 +4,11 @@
     texidoc = "With @code{\\cueDuring} and @code{\\quoteDuring},
 fragments of previously entered music may be
 quoted. @code{quotedEventTypes} will determines what things are
-quoted. In this example, a 16th rests is not quoted, since
+quoted. In this example, a 16th rest is not quoted, since
 @code{rest-event} is not in @code{quotedEventTypes}."
 
 }
-\version "2.9.13"
+\version "2.14.0"
 \layout {
     ragged-right = ##t
 }
@@ -16,7 +16,7 @@ quoted. In this example, a 16th rests is not quoted, since
 
 quoteMe = \relative c' { fis4 r16  a8.-> b4-\ff c }
 
-\addquote quoteMe \quoteMe 
+\addQuote quoteMe \quoteMe 
 original = \relative c'' { c8 d s2 es8 gis8 }
 
 <<
@@ -32,7 +32,9 @@ original = \relative c'' { c8 d s2 es8 gis8 }
        
        \set Staff.instrumentName = "orig+quote"        
        \set Staff.quotedEventTypes = #'(note-event articulation-event)
-       \original
+       \new Voice {
+           \override Voice . Beam #'collision-voice-only = ##t
+           \original }
        { s4 \quoteDuring #"quoteMe" { s2. } }
     >>
 >>