]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/cross-staff-tremolos.ly
Doc-de: updates from master to NR
[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.4"
5
6 \header {
7 %% Translation of GIT committish: e98b2d804c2a136edfa28adc894bb584f676c884
8   texidocfr = "
9 Dans la mesure où @code{\\repeat tremolo} requiert deux arguments
10 musicaux pour un trémolo d'accords, la note ou l'accord de la
11 portée opposée doît être encadré par des accolades et se voir adjoindre
12 la commande @code{\\change Staff}.
13
14 "
15   doctitlefr = "Trémolo et changement de portée"
16
17
18   lsrtags = "repeats, keyboards"
19
20   texidoc = "
21 Since @code{\\repeat tremolo} expects exactly two musical arguments for
22 chord tremolos, the note or chord which changes staff within a
23 cross-staff tremolo should be placed inside curly braces together with
24 its @code{\\change Staff} command.
25
26 "
27   doctitle = "Cross-staff tremolos"
28 } % begin verbatim
29
30 \new PianoStaff <<
31   \new Staff = "up" \relative c'' {
32     \key a \major
33     \time 3/8
34     s4.
35   }
36   \new Staff = "down" \relative c'' {
37     \key a \major
38     \time 3/8
39     \voiceOne
40     \repeat tremolo 6 {
41       <a e'>32
42       {
43         \change Staff = "up"
44         \voiceTwo
45         <cis a' dis>32
46       }
47     }
48   }
49 >>
50