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