[ << Staff notation ] | [Top][Contents] | [ Editorial annotations >> ] |
[ < Putting lyrics inside the staff ] | [ Up : Staff notation ] | [ Citar otra voz con transposición > ] |
Citar otra voz
La propiedad quotedEventTypes
determina los tipos de eventos
musicales que resultan citados. El valor predeterminado es
(note-event rest-event tie-event beam-event tuplet-span-event)
,
que significa que sólo aparecen en la expresión \quoteDuring
las notas, silencios, ligaduras, barras y grupos especiales. En el
ejemplo siguiente, el silencio de semicorchea no aparece en el
fragmento citado porque rest-event
no está dentro de los
quotedEventTypes
.
Para ver una lista de los tipos de evento, consulte la sección “Music classes” de la Referencia de funcionamiento interno.
quoteMe = \relative c' { fis4 r16 a8.-> b4\ff c } \addQuote quoteMe \quoteMe original = \relative c'' { c8 d s2 \once \override NoteColumn.ignore-collision = ##t es8 gis8 } << \new Staff \with { instrumentName = "quoteMe" } \quoteMe \new Staff \with { instrumentName = "orig" } \original \new Staff \with { instrumentName = "orig+quote" quotedEventTypes = #'(note-event articulation-event) } \relative c'' << \original \new Voice { s4 \set fontSize = #-4 \override Stem.length-fraction = #(magstep -4) \quoteDuring "quoteMe" { \skip 2. } } >> >>
[ << Staff notation ] | [Top][Contents] | [ Editorial annotations >> ] |
[ < Putting lyrics inside the staff ] | [ Up : Staff notation ] | [ Citar otra voz con transposición > ] |