]> 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 b98d960fc05b5b1d4c3405d758b903178d386f6b..8c4732520d780ef7ac8a2129c20468f47c91e80e 100644 (file)
@@ -7,25 +7,35 @@ things are quoted. In this example, a 16th rests is not quoted, since
 @code{rest-event} is not in @code{quotedEventTypes}."
 
 }
-\version "2.3.22"
+\version "2.7.39"
 \layout {
-    raggedright = ##t
+    ragged-right = ##t
 }
 
-\addquote bla \relative c' {
-    fis4 r16  a8.-> b-\ff }
 
-\relative c'' {
+quoteMe = \relative c' { fis4 r16  a8.-> b4-\ff c }
 
-    \set Staff.quotedEventTypes = #'(note-event articulation-event)
-    c8 d8  <<
-       s2 
-       \new Voice {
-           \set fontSize = #-2
-           \quote bla 2
+\addquote quoteMe \quoteMe 
+original = \relative c'' { c8 d s2 es8 gis8 }
 
-       } >>
-    es8 gis
-       
+<<
+    \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. }
+       }
+    >>
+>>