]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/quoting-another-voice-with-transposition.ly
Snippets: strip whitespace.
[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.16"
5
6 \header {
7   lsrtags = "pitches, staff-notation"
8
9 %% Translation of GIT committish: d2119a9e5e951c6ae850322f41444ac98d1ed492
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 %% Translation of GIT committish: 0a868be38a775ecb1ef935b079000cebbc64de40
23   texidocde = "
24 Zitate berücksichtigen sowohl die Transposition der Quelle als auch
25 des Zielinstruments.  In diesem Beispiel spielen alle Instrumente
26 klingendes C, das Zielinstrument ist in F.  Die Noten für das
27 Zielinstrument können mit @code{\\transpose} transponiert werden,
28 in diesem Fall werden alle Noten (auch die zitierten) transponiert.
29
30 "
31   doctitlede = "Eine Stimme mit Transposition zitieren"
32 %% Translation of GIT committish: 99dc90bbc369722cf4d3bb9f30b7288762f2167f6
33   texidocfr = "
34 Les citations tiennent compte de la transposition, aussi bien celle de
35 l'instrument d'origine que celle de la partie où elle intervient.  Dans
36 l'exemple suivant, tous les instruments sont en tonalité de concert et
37 seront repris par un instrument en fa.  Le destinataire de la citation
38 peut à son tour transposer à l'aide de la commande @code{\\transpose}.
39 En pareil cas, toutes les hauteurs, y compris celle de la citation,
40 seront transposées.
41
42 "
43   doctitlefr = "Citation d'une autre voix et transposition"
44
45
46   texidoc = "
47 Quotations take into account the transposition of both source and
48 target.  In this example, all instruments play sounding middle C; the
49 target is an instrument in F.  The target part may be transposed using
50 @code{\\transpose}.  In this case, all the pitches (including the
51 quoted ones) are transposed.
52
53 "
54   doctitle = "Quoting another voice with transposition"
55 } % begin verbatim
56
57 \addQuote clarinet {
58   \transposition bes
59   \repeat unfold 8 { d'16 d' d'8 }
60 }
61
62 \addQuote sax {
63   \transposition es'
64   \repeat unfold 16 { a8 }
65 }
66
67 quoteTest = {
68   % french horn
69   \transposition f
70   g'4
71   << \quoteDuring #"clarinet" { \skip 4 } s4^"clar." >>
72   << \quoteDuring #"sax" { \skip 4 } s4^"sax." >>
73   g'4
74 }
75
76 {
77   \set Staff.instrumentName =
78     \markup {
79       \center-column { Horn \line { in F } }
80     }
81   \quoteTest
82   \transpose c' d' << \quoteTest s4_"up a tone" >>
83 }