X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=Documentation%2Fsnippets%2Fquoting-another-voice.ly;h=40963ab6a9c1971871c158f102a8cbe104bc888f;hb=3f57efa0cde39bf0642fb6fb3672a19262ceda83;hp=3cec13d8ce2291f8cac5fdc7d26a033ef3bc0091;hpb=b27579f3a9b2311232f8eb1f11403f560dcc9b17;p=lilypond.git diff --git a/Documentation/snippets/quoting-another-voice.ly b/Documentation/snippets/quoting-another-voice.ly index 3cec13d8ce..40963ab6a9 100644 --- a/Documentation/snippets/quoting-another-voice.ly +++ b/Documentation/snippets/quoting-another-voice.ly @@ -1,65 +1,15 @@ -%% DO NOT EDIT this file manually; it is automatically -%% generated from LSR http://lsr.dsi.unimi.it -%% Make any changes in LSR itself, or in Documentation/snippets/new/ , -%% and then run scripts/auxiliar/makelsr.py -%% -%% This file is in the public domain. -\version "2.14.2" +% DO NOT EDIT this file manually; it is automatically +% generated from Documentation/snippets/new +% Make any changes in Documentation/snippets/new/ +% and then run scripts/auxiliar/makelsr.py +% +% This file is in the public domain. +%% Note: this file works from version 2.19.56 +\version "2.19.56" \header { lsrtags = "staff-notation" -%% Translation of GIT committish: 6977ddc9a3b63ea810eaecb864269c7d847ccf98 - texidoces = " - -La propiedad @code{quotedEventTypes} determina los tipos de eventos -musicales que resultan citados. El valor predeterminado es -@code{(note-event rest-event tie-event beam-event tuplet-span-event)}, -que significa que sólo aparecen en la expresión @code{\\quoteDuring} -las notas, silencios, ligaduras, barras y grupos especiales. En el -ejemplo siguiente, el silencio de semicorchea no aparece en el -fragmento citado porque @code{rest-event} no está dentro de los -@code{quotedEventTypes}. - -Para ver una lista de los tipos de evento, consulte la sección -@qq{Music classes} de la Referencia de funcionamiento interno. - - -" - doctitlees = "Citar otra voz" - - -%% Translation of GIT committish: 0a868be38a775ecb1ef935b079000cebbc64de40 - texidocde = " -Die @code{quotedEventTypes}-Eigenschaft bestimmt die -Typen an Musikereignissen, die zitiert werden. Die -Standardeinstellung ist @code{(note-event rest-event)}, womit -nur Noten und Pausen der zitierten Stimme für den -@code{\\quoteDuring}-Ausdruck übernommen werden. Im -Beispiel hier wird die 16-Pause nicht übernommen, weil -sich @code{rest-event} nicht in @code{quotedEventTypes} befindet. - -" - - doctitlede = "Eine andere Stimme zitieren" - -%% Translation of GIT committish: 3b125956b08d27ef39cd48bfa3a2f1e1bb2ae8b4 - texidocfr = " -Les types d'événement pris en charge pour la citation peuvent se régler -avec la propriété @code{quotedEventTypes}. Par défaut, sa valeur est -fixée à @code{(note-event rest-event tie-event beam-event -tuplet-span-event)}, ce qui signifie que seuls les notes, silences, -liaisons, ligatures et nolets seront mentionnés par @code{\\quoteDuring}. -Dans l'exemple suivant, le quart de soupir n'est pas reproduit puisqu'il -n'est pas mentionné parmi les @code{quotedEventTypes}. - -Pour connaître la liste des types d'événements, reportez-vous au -chapitre @emph{Music classes} de la référence des propriétés internes. - -" - doctitlefr = "Citation d'une autre voix" - - texidoc = " The @code{quotedEventTypes} property determines the music event types which should be quoted. The default value is @code{(note-event @@ -76,36 +26,36 @@ the Internals Reference. doctitle = "Quoting another voice" } % begin verbatim - quoteMe = \relative c' { fis4 r16 a8.-> b4\ff c -} +} % begin verbatim + \addQuote quoteMe \quoteMe original = \relative c'' { c8 d s2 - \once \override NoteColumn #'ignore-collision = ##t + \once \override NoteColumn.ignore-collision = ##t es8 gis8 } << - \new Staff { - \set Staff.instrumentName = #"quoteMe" - \quoteMe - } - \new Staff { - \set Staff.instrumentName = #"orig" - \original + \new Staff \with { instrumentName = "quoteMe" } + \quoteMe + + \new Staff \with { instrumentName = "orig" } + \original + + \new Staff \with { + instrumentName = "orig+quote" + quotedEventTypes = #'(note-event articulation-event) } - \new Staff \relative c'' << - \set Staff.instrumentName = #"orig+quote" - \set Staff.quotedEventTypes = - #'(note-event articulation-event) + \relative c'' + << \original \new Voice { s4 \set fontSize = #-4 - \override Stem #'length-fraction = #(magstep -4) + \override Stem.length-fraction = #(magstep -4) \quoteDuring #"quoteMe" { \skip 2. } } >>