]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/regression/quote.ly
Issue 5167/6: Changes: show \markup xxx = ... \etc assignments
[lilypond.git] / input / regression / quote.ly
index dd0dd1e9706e13571a5f444e8d5ea08b6a950034..e884adb3f384956c6aa52c34b886dfc3022c8bd2 100644 (file)
@@ -3,39 +3,40 @@
 
     texidoc = "With @code{\\quote}, 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
+things are quoted. In this example, a 16th rest is not quoted, since
 @code{rest-event} is not in @code{quotedEventTypes}."
 
 }
-\version "2.3.22"
+\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'' <<
-       \set Staff.instrument = "orig+quote"    
+       \set Staff.instrumentName = "orig+quote"        
        \set Staff.quotedEventTypes = #'(note-event articulation-event)
-       \original
-       \new Voice {
+       \new Voice {\voiceOne
+           \original }
+         \new Voice {\voiceTwo
            s4
            \set fontSize = #-4
-           \override Stem #'lengths = #'(2.5 2.5 3.0 3.0)
-           \quote quoteMe 2.
+           \override Stem.length-fraction = #(magstep -4)
+           \quoteDuring #"quoteMe" { \skip 2. }
        }
     >>
 >>