X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=input%2Fregression%2Fquote.ly;h=1f29585f3c06829f71ad84b682525c47e561c5e5;hb=87eedcd59f4082cb0841528ad5bc82cb1d1191e3;hp=17054c3d6411679f8412250b54768ab91712555b;hpb=9c31b0d42a407a412a324a6586cfb0437de4bfd8;p=lilypond.git diff --git a/input/regression/quote.ly b/input/regression/quote.ly index 17054c3d64..1f29585f3c 100644 --- a/input/regression/quote.ly +++ b/input/regression/quote.ly @@ -1,18 +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.36" +\version "2.11.10" +\layout { + ragged-right = ##t +} -\addquote bla \notes\relative c' { - fis4 g a b } -\score { - \notes \relative c'' { - c8 d8 \quote bla 2 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.instrumentName = "quoteMe" + \quoteMe + } + \new Staff { + \set Staff.instrumentName = "orig" + \original + } + \new Staff \relative c'' << + \set Staff.instrumentName = "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. } + } + >> +>>