]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/regression/quote-cue-during.ly
Release: bump Welcome versions.
[lilypond.git] / input / regression / quote-cue-during.ly
index 36ea22f6c7639879f31c4fe9ff70f15a2d8fb471..446c9629563d1d2cb7c15c552ad4b0421c2bf031 100644 (file)
@@ -3,51 +3,46 @@
 
   texidoc = " The @code{cueDuring} form of quotation will set stem
 directions on both quoted and main voice, and deliver the quoted voice
-in the @code{cue} @code{Voice}. The music function @code{\killCues}
-can be remove all cue notes."
+in the @code{cue} @code{Voice}. The music function @code{\\killCues}
+can remove all cue notes.
+
+Spanners run to the end of a cue section, and are not started on the
+last note."
 
-       }
-\version "2.5.0"
-\layout {
-  raggedright = ##t
 }
 
+\version "2.19.21"
+\layout {
+  ragged-right = ##t
+}
 
-quoteMe = \relative c' { fis4 r16  a8.-> b4-\ff  c4 }
+quoteMe = \relative { fis'4 r16  a8.-> b4(-\ff~  b16 c8.  b) }
 
-\addquote quoteMe \quoteMe 
+\addQuote quoteMe \quoteMe 
 
-original = \relative c'' { c8 d s2 es8 gis8 }
+original = \relative {
+  c''8 d
+  \cueDuring #"quoteMe"  #1 { r2 }
+  es8 gis8
+  \cueDuring #"quoteMe"  #1 { r4 }
+}
 
 cueStaff =  \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.quotedEventTypes = #'(note-event articulation-event)
   \original
-  { s4 \cueDuring #"quoteMe"  #1 { r2 } }
 >>
 
 <<
   \new Staff {
-    \set Staff.instrument = "quoteMe"
+    \set Staff.instrumentName = "quoteMe"
     \quoteMe
   }
   \new Staff {
-    \set Staff.instrument = "orig"
-    \original
+    \set Staff.instrumentName = "orig (killCues)"
+    \killCues \original
   }
   \new Staff {
-    \set Staff.instrument = "orig+quote"       
+    \set Staff.instrumentName = "orig+quote"   
     \cueStaff
   }
-  \new Staff {
-    \set Staff.instrument = "killCues" 
-    \killCues \cueStaff
-    
-  }
 >>