]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/cross-staff-tremolos.ly
Doc: run makelsr locally
[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.2"
8
9 \header {
10   lsrtags = "repeats, keyboards, real-music"
11
12 %% Translation of GIT committish: b482c3e5b56c3841a88d957e0ca12964bd3e64fa
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
47 \new PianoStaff <<
48   \new Staff = "up" \relative c'' {
49     \key a \major
50     \time 3/8
51     s4.
52   }
53   \new Staff = "down" \relative c'' {
54     \key a \major
55     \time 3/8
56     \voiceOne
57     \repeat tremolo 6 {
58       <a e'>32
59       {
60         \change Staff = "up"
61         \voiceTwo
62         <cis a' dis>32
63       }
64     }
65   }
66 >>
67