X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=input%2Fregression%2Fquote.ly;h=e884adb3f384956c6aa52c34b886dfc3022c8bd2;hb=ad8cfeebea0960375c9c30f1babd69f0bed1f3cf;hp=8c4732520d780ef7ac8a2129c20468f47c91e80e;hpb=9f3572d98bb948c9689cd1f75401a029451fa001;p=lilypond.git diff --git a/input/regression/quote.ly b/input/regression/quote.ly index 8c4732520d..e884adb3f3 100644 --- a/input/regression/quote.ly +++ b/input/regression/quote.ly @@ -3,38 +3,39 @@ 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.7.39" +\version "2.19.21" \layout { ragged-right = ##t } -quoteMe = \relative c' { fis4 r16 a8.-> b4-\ff c } +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 #'length-fraction = #(magstep -4) + \override Stem.length-fraction = #(magstep -4) \quoteDuring #"quoteMe" { \skip 2. } } >>