]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/quoting-another-voice-with-transposition.ly
Merge branch 'lilypond/translation' of ssh://jomand@git.sv.gnu.org/srv/git/lilypond
[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   texidoc = "
35 Quotations take into account the transposition of both source and
36 target.  In this example, all instruments play sounding middle C; the
37 target is an instrument in F.  The target part may be transposed using
38 @code{\\transpose}.  In this case, all the pitches (including the
39 quoted ones) are transposed.
40
41 "
42   doctitle = "Quoting another voice with transposition"
43 } % begin verbatim
44
45 \addQuote clarinet {
46   \transposition bes
47   \repeat unfold 8 { d'16 d' d'8 }
48 }
49
50 \addQuote sax {
51   \transposition es'
52   \repeat unfold 16 { a8 }
53 }
54
55 quoteTest = {
56   % french horn
57   \transposition f
58   g'4
59   << \quoteDuring #"clarinet" { \skip 4 } s4^"clar." >>
60   << \quoteDuring #"sax" { \skip 4 } s4^"sax." >>
61   g'4
62 }
63
64 {
65   \set Staff.instrumentName =
66     \markup {
67       \center-column { Horn \line { in F } }
68     }
69   \quoteTest
70   \transpose c' d' << \quoteTest s4_"up a tone" >>
71 }