]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/cross-staff-tremolos.ly
Add some new translations of snippets.
[lilypond.git] / Documentation / snippets / cross-staff-tremolos.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.31"
5
6 \header {
7 %% Translation of GIT committish: a5bde6d51a5c88e952d95ae36c61a5efc22ba441
8
9   texidoces = "
10
11 Dado que @code{\\repeat tremolo} espera exactamente dos argumentos
12 musicales para los trémolos de acorde, la nota o acorde que cambia de
13 pentagrama en un trémolo que cruza el pentagrama se debe colocar
14 dentro de llaves curvas junto a su instrucción @code{\\change Staff}.
15
16 "
17
18   doctitlees = "Trémolos de pentagrama cruzado"
19
20   lsrtags = "repeats, keyboards"
21
22
23 %% Translation of GIT committish: a5bde6d51a5c88e952d95ae36c61a5efc22ba441
24   texidocfr = "
25 Dans la mesure où @code{\\repeat tremolo} requiert deux arguments
26 musicaux pour un trémolo d'accords, la note ou l'accord de la
27 portée opposée doît être encadré par des accolades et se voir adjoindre
28 la commande @code{\\change Staff}.
29
30 "
31   doctitlefr = "Trémolo et changement de portée"
32
33
34   texidoc = "
35 Since @code{\\repeat tremolo} expects exactly two musical arguments for
36 chord tremolos, the note or chord which changes staff within a
37 cross-staff tremolo should be placed inside curly braces together with
38 its @code{\\change Staff} command.
39
40 "
41   doctitle = "Cross-staff tremolos"
42 } % begin verbatim
43
44 \new PianoStaff <<
45   \new Staff = "up" \relative c'' {
46     \key a \major
47     \time 3/8
48     s4.
49   }
50   \new Staff = "down" \relative c'' {
51     \key a \major
52     \time 3/8
53     \voiceOne
54     \repeat tremolo 6 {
55       <a e'>32
56       {
57         \change Staff = "up"
58         \voiceTwo
59         <cis a' dis>32
60       }
61     }
62   }
63 >>
64