]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/regression/quote.ly
Fix some bugs in the dynamic engraver and PostScript backend
[lilypond.git] / input / regression / quote.ly
index fb6241af2563369cd8c1f6bb14bcd171008c45d6..8c4732520d780ef7ac8a2129c20468f47c91e80e 100644 (file)
@@ -1,17 +1,41 @@
 \header
 {
 
-    texidoc = "With @code{\quote}, fragments of previously entered
-music may be quoted. " 
+    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
+@code{rest-event} is not in @code{quotedEventTypes}."
 
 }
-\version "2.1.26"
+\version "2.7.39"
+\layout {
+    ragged-right = ##t
+}
 
-\addquote bla \notes\relative c' { fis4 fis fis fis }
 
-\score {
-    \notes \relative c'' {
-       c8 d8 \quote 2 bla es8 gis  
-    }
-}
+quoteMe = \relative c' { fis4 r16  a8.-> b4-\ff c }
 
+\addquote quoteMe \quoteMe 
+original = \relative c'' { c8 d s2 es8 gis8 }
+
+<<
+    \new Staff {
+       \set Staff.instrument = "quoteMe"
+       \quoteMe
+    }
+    \new Staff {
+       \set Staff.instrument = "orig"
+       \original
+    }
+    \new Staff \relative c'' <<
+       \set Staff.instrument = "orig+quote"    
+       \set Staff.quotedEventTypes = #'(note-event articulation-event)
+       \original
+       \new Voice {
+           s4
+           \set fontSize = #-4
+           \override Stem #'length-fraction = #(magstep -4)
+           \quoteDuring #"quoteMe" { \skip 2. }
+       }
+    >>
+>>