]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/quoting-another-voice-with-transposition.ly
c5a19e37f9c62a46c5452c6806f6da3add7985b6
[lilypond.git] / Documentation / snippets / quoting-another-voice-with-transposition.ly
1 %% DO NOT EDIT this file manually; it is automatically
2 %% generated from LSR http://lsr.dsi.unimi.it
3 %% Make any changes in LSR itself, or in Documentation/snippets/new/ ,
4 %% and then run scripts/auxiliar/makelsr.py
5 %%
6 %% This file is in the public domain.
7 \version "2.14.2"
8
9 \header {
10   lsrtags = "pitches, staff-notation"
11
12 %% Translation of GIT committish: 6977ddc9a3b63ea810eaecb864269c7d847ccf98
13   texidoces = "
14 Los pasajes citados tienen en cuenta la transposición de la fuente
15 tanto como la del destino.  En este ejemplo, todos los
16 instrumentos interpreta una nota con el sonido del Do central; el
17 destino de un instrumento transpositor en Fa.  La parte de destino
18 se puede transponer utilizando @code{\\transpose}.  En este caso
19 se transportan todas las notas (incluidas las citadas).
20
21 "
22
23 doctitlees = "Citar otra voz con transposición"
24
25
26 %% Translation of GIT committish: 0a868be38a775ecb1ef935b079000cebbc64de40
27   texidocde = "
28 Zitate berücksichtigen sowohl die Transposition der Quelle als auch
29 des Zielinstruments.  In diesem Beispiel spielen alle Instrumente
30 klingendes C, das Zielinstrument ist in F.  Die Noten für das
31 Zielinstrument können mit @code{\\transpose} transponiert werden,
32 in diesem Fall werden alle Noten (auch die zitierten) transponiert.
33
34 "
35   doctitlede = "Eine Stimme mit Transposition zitieren"
36
37 %% Translation of GIT committish: 3b125956b08d27ef39cd48bfa3a2f1e1bb2ae8b4
38   texidocfr = "
39 Les citations tiennent compte de la transposition, aussi bien celle de
40 l'instrument d'origine que celle de la partie où elle intervient.  Dans
41 l'exemple suivant, tous les instruments sont en tonalité de concert et
42 seront repris par un instrument en fa.  Le destinataire de la citation
43 peut à son tour transposer à l'aide de la commande @code{\\transpose}.
44 En pareil cas, toutes les hauteurs, y compris celles de la citation,
45 seront transposées.
46
47 "
48   doctitlefr = "Citation d'une autre voix et transposition"
49
50
51   texidoc = "
52 Quotations take into account the transposition of both source and
53 target.  In this example, all instruments play sounding middle C; the
54 target is an instrument in F.  The target part may be transposed using
55 @code{\\transpose}.  In this case, all the pitches (including the
56 quoted ones) are transposed.
57
58 "
59   doctitle = "Quoting another voice with transposition"
60 } % begin verbatim
61
62
63 \addQuote clarinet {
64   \transposition bes
65   \repeat unfold 8 { d'16 d' d'8 }
66 }
67
68 \addQuote sax {
69   \transposition es'
70   \repeat unfold 16 { a8 }
71 }
72
73 quoteTest = {
74   % french horn
75   \transposition f
76   g'4
77   << \quoteDuring #"clarinet" { \skip 4 } s4^"clar." >>
78   << \quoteDuring #"sax" { \skip 4 } s4^"sax." >>
79   g'4
80 }
81
82 {
83   \set Staff.instrumentName =
84     \markup {
85       \center-column { Horn \line { in F } }
86     }
87   \quoteTest
88   \transpose c' d' << \quoteTest s4_"up a tone" >>
89 }