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