]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/quoting-another-voice-with-transposition.ly
bda44253ccb65b42692d9832b536dabff805df5d
[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.12.2"
8
9 \header {
10   lsrtags = "pitches, staff-notation"
11
12 %% Translation of GIT committish: 59caa3adce63114ca7972d18f95d4aadc528ec3d
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: 4ab2514496ac3d88a9f3121a76f890c97cedcf4e
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 celle 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 \addQuote clarinet {
63   \transposition bes
64   \repeat unfold 8 { d'16 d' d'8 }
65 }
66
67 \addQuote sax {
68   \transposition es'
69   \repeat unfold 16 { a8 }
70 }
71
72 quoteTest = {
73   % french horn
74   \transposition f
75   g'4
76   << \quoteDuring #"clarinet" { \skip 4 } s4^"clar." >>
77   << \quoteDuring #"sax" { \skip 4 } s4^"sax." >>
78   g'4
79 }
80
81 {
82   \set Staff.instrumentName =
83     \markup {
84       \center-column { Horn \line { in F } }
85     }
86   \quoteTest
87   \transpose c' d' << \quoteTest s4_"up a tone" >>
88 }