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