]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/quoting-another-voice.ly
LSR: update.
[lilypond.git] / Documentation / snippets / quoting-another-voice.ly
1 %% Do not edit this file; it is automatically
2 %% generated from LSR http://lsr.dsi.unimi.it
3 %% This file is in the public domain.
4 \version "2.13.29"
5
6 \header {
7   lsrtags = "staff-notation"
8
9 %% Translation of GIT committish: 0b55335aeca1de539bf1125b717e0c21bb6fa31b
10   texidoces = "
11
12 La propiedad @code{quotedEventTypes} determina los tipos de eventos
13 musicales que resultan citados.  El valor predeterminado es
14 @code{(note-event rest-event tie-event beam-event tuplet-span-event)},
15 que significa que sólo aparecen en la expresión @code{\\quoteDuring}
16 las notas, silencios, ligaduras, barras y grupos especiales.  En el
17 ejemplo siguiente, el silencio de semicorchea no aparece en el
18 fragmento citado porque @code{rest-event} no está dentro de los
19 @code{quotedEventTypes}.
20
21 Para ver una lista de los tipos de evento, consulte la sección
22 @qq{Music classes} de la Referencia de funcionamiento interno.
23
24
25 "
26   doctitlees = "Citar otra voz"
27
28
29 %% Translation of GIT committish: 0a868be38a775ecb1ef935b079000cebbc64de40
30   texidocde = "
31 Die @code{quotedEventTypes}-Eigenschaft bestimmt die
32 Typen an Musikereignissen, die zitiert werden.  Die
33 Standardeinstellung ist @code{(note-event rest-event)}, womit
34 nur Noten und Pausen der zitierten Stimme für den
35 @code{\\quoteDuring}-Ausdruck übernommen werden.  Im
36 Beispiel hier wird die 16-Pause nicht übernommen, weil
37 sich @code{rest-event} nicht in @code{quotedEventTypes} befindet.
38
39 "
40
41   doctitlede = "Eine andere Stimme zitieren"
42
43 %% Translation of GIT committish: 99dc90bbc369722cf4d3bb9f30b7288762f2167f6
44   texidocfr = "
45 Les types d'événement pris en charge pour la citation peuvent se régler
46 avec la propriété @code{quotedEventTypes}.  Par défaut, sa valeur est
47 fixée à @code{(note-event rest-event tie-event beam-event
48 tuplet-span-event)}, ce qui signifie que seuls les notes, silences,
49 liaisons, ligatures et nolets seront mentionnés par @code{\quoteDuring}.
50 Dans l'exemple suivant, le quart de soupir n'est pas reproduit puisqu'il
51 n'est pas mentionné parmi les @code{quotedEventTypes}.
52
53 Pour connaître la liste des types d'événements, reportez-vous au
54 chapitre @emph{Music classes} de la référence des propriétés internes.
55
56 "
57   doctitlefr = "Citation d'une autre voix"
58
59
60   texidoc = "
61 The @code{quotedEventTypes} property determines the music event types
62 which should be quoted.  The default value is @code{(note-event
63 rest-event tie-event beam-event tuplet-span-event)}, which means that
64 only the notes, rests, ties, beams and tuplets of the quoted voice will
65 appear in the @code{\\quoteDuring} expression. In the following
66 example, a 16th rest is not quoted since @code{rest-event} is not in
67 @code{quotedEventTypes}.
68
69 For a list of event types, consult the @qq{Music classes} section of
70 the Internals Reference.
71
72 "
73   doctitle = "Quoting another voice"
74 } % begin verbatim
75
76 quoteMe = \relative c' {
77   fis4 r16 a8.-> b4\ff c
78 }
79 \addQuote quoteMe \quoteMe
80
81 original = \relative c'' {
82   c8 d s2
83   \once \override NoteColumn #'ignore-collision = ##t
84   es8 gis8
85 }
86
87 <<
88   \new Staff {
89     \set Staff.instrumentName = #"quoteMe"
90     \quoteMe
91   }
92   \new Staff {
93     \set Staff.instrumentName = #"orig"
94     \original
95   }
96   \new Staff \relative c'' <<
97     \set Staff.instrumentName = #"orig+quote"
98     \set Staff.quotedEventTypes =
99       #'(note-event articulation-event)
100     \original
101     \new Voice {
102       s4
103       \set fontSize = #-4
104       \override Stem #'length-fraction = #(magstep -4)
105       \quoteDuring #"quoteMe" { \skip 2. }
106     }
107   >>
108 >>