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