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