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