]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/quoting-another-voice-with-transposition.ly
Imported Upstream version 2.12.3
[lilypond.git] / input / lsr / 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.12.3"
4
5 \header {
6   lsrtags = "pitches, staff-notation"
7
8   texidoces = "
9 Los pasajes citados tienen en cuenta la transposición de la fuente
10 tanto como la del destino.  En este ejemplo, todos los
11 instrumentos interpreta una nota con el sonido del Do central; el
12 destino de un instrumento transpositor en Fa.  La parte de destino
13 se puede transponer utilizando @code{\\transpose}.  En este caso
14 se transportan todas las notas (incluidas las citadas).
15
16 "
17
18 doctitlees = "Citar otra voz con transposición"
19   texidoc = "
20 Quotations take into account the transposition of both source and
21 target.  In this example, all instruments play sounding middle C; the
22 target is an instrument in F.  The target part may be transposed using
23 @code{\\transpose}.  In this case, all the pitches (including the
24 quoted ones) are transposed.
25
26 "
27   doctitle = "Quoting another voice with transposition"
28 } % begin verbatim
29
30 \addQuote clarinet {
31   \transposition bes
32   \repeat unfold 8 { d'16 d' d'8 }
33 }
34
35 \addQuote sax {
36   \transposition es'
37   \repeat unfold 16 { a8 }
38 }
39
40 quoteTest = {
41   % french horn
42   \transposition f
43   g'4
44   << \quoteDuring #"clarinet" { \skip 4 } s4^"clar." >>
45   << \quoteDuring #"sax" { \skip 4 } s4^"sax." >>
46   g'4
47 }
48
49 {
50   \set Staff.instrumentName =
51     \markup {
52       \center-column { Horn \line { in F } }
53     }
54   \quoteTest
55   \transpose c' d' << \quoteTest s4_"up a tone" >>
56 }