]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/quoting-another-voice-with-transposition.ly
Merge branch 'master' into lilypond/translation
[lilypond.git] / input / lsr / quoting-another-voice-with-transposition.ly
1 %% Do not edit this file; it is auto-generated from input/new
2 %% This file is in the public domain.
3 %% Note: this file works from version 2.12.0
4 \version "2.13.1"
5 \header {
6   texidoces = "
7 Los pasajes citados tienen en cuenta la transposición de la fuente
8 tanto como la del destino.  En este ejemplo, todos los
9 instrumentos interpreta una nota con el sonido del Do central; el
10 destino de un instrumento transpositor en Fa.  La parte de destino
11 se puede transponer utilizando @code{\\transpose}.  En este caso
12 se transportan todas las notas (incluidas las citadas).
13
14 "
15
16 doctitlees = "Citar otra voz con transposición"
17
18 %% Translation of GIT committish :<0364058d18eb91836302a567c18289209d6e9706>
19   texidocde = "
20 Zitate berücksichtigen sowohl die Transposition der Quelle als auch
21 des Zielinstruments.  In diesem Beispiel spielen alle Instrumente
22 klingendes C, das Zielinstrument ist in F.  Die Noten für das
23 Zielinstrument können mit @code{\\transpose} transponiert werden,
24 in diesem Fall werden alle Noten (auch die zitierten) transponiert.
25
26 "
27   doctitlede = "Eine Stimme mit Transposition zitieren"
28
29   lsrtags = "pitches,staff-notation"
30   texidoc = "Quotations take into account the transposition of both
31 source and target.  In this example, all instruments play sounding
32 middle C; the target is an instrument in F.  The target part may be
33 transposed using @code{\\transpose}.  In this case, all the pitches
34 (including the quoted ones) are transposed.
35 "
36   doctitle = "Quoting another voice with transposition"
37 } % begin verbatim
38
39
40 \addQuote clarinet {
41   \transposition bes
42   \repeat unfold 8 { d'16 d' d'8 }
43 }
44
45 \addQuote sax {
46   \transposition es'
47   \repeat unfold 16 { a8 }
48 }
49
50 quoteTest = {
51   % french horn
52   \transposition f
53   g'4
54   << \quoteDuring #"clarinet" { \skip 4 } s4^"clar." >>
55   << \quoteDuring #"sax" { \skip 4 } s4^"sax." >>
56   g'4
57 }
58
59 {
60   \set Staff.instrumentName =
61     \markup {
62       \center-column { Horn \line { in F } }
63     }
64   \quoteTest
65   \transpose c' d' << \quoteTest s4_"up a tone" >>
66 }