]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/regression/quote-during.ly
Imported Upstream version 2.19.45
[lilypond.git] / input / regression / quote-during.ly
index 9f9c376e91dfec5e048075b45695acd3f2e28b68..e270c37e68116cea20d2ec978e7c538082b2eeba 100644 (file)
@@ -1,44 +1,40 @@
 \header
 {
 
-    texidoc = "With @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 @code{rest-event} is not in @code{quotedEventTypes}."
+    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 rest is not quoted, since
+@code{rest-event} is not in @code{quotedEventTypes}."
 
 }
-\version "2.4.0"
+\version "2.19.21"
 \layout {
-    raggedright = ##t
+    ragged-right = ##t
 }
 
 
-quoteMe = \relative c' { fis4 r16  a8.-> b4-\ff }
+quoteMe = \relative { fis'4 r16  a8.-> b4-\ff c }
 
-\addquote quoteMe \quoteMe 
-original = \relative c'' { c8 d s2 es8 gis8 }
+\addQuote quoteMe \quoteMe 
+original = \relative { c''8 d s2 es8 gis8 }
 
 <<
     \new Staff {
-       \set Staff.instrument = "quoteMe"
+       \set Staff.instrumentName = "quoteMe"
        \quoteMe
     }
     \new Staff {
-       \set Staff.instrument = "orig"
+       \set Staff.instrumentName = "orig"
        \original
     }
     \new Staff \relative c'' <<
-
-       % setup cue note layout.
-       \context Voice = cue  {
-           \set fontSize = #-4
-           \override Stem #'lengths = #'(2.5 2.5 3.0 3.0)
-           \skip 1
-           }
        
-       \set Staff.instrument = "orig+quote"    
+       \set Staff.instrumentName = "orig+quote"        
        \set Staff.quotedEventTypes = #'(note-event articulation-event)
-       \original
-       { s4 \quoteDuring #"quoteMe"  #1 { r2. } }
+       \new Voice {\voiceOne
+           \override Voice.Beam.collision-voice-only = ##t
+           \original }
+       \new Voice {\voiceTwo s4 \quoteDuring #"quoteMe" { s2. } }
     >>
 >>