]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/cross-staff-tremolos.ly
LSR: Update.
[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   lsrtags = "repeats, keyboards"
8
9   texidoc = "
10 Since @code{\\repeat tremolo} expects exactly two musical arguments for
11 chord tremolos, the note or chord which changes staff within a
12 cross-staff tremolo should be placed inside curly braces together with
13 its @code{\\change Staff} command.
14
15 "
16   doctitle = "Cross-staff tremolos"
17 } % begin verbatim
18
19 \new PianoStaff <<
20   \new Staff = "up" \relative c'' {
21     \key a \major
22     \time 3/8
23     s4.
24   }
25   \new Staff = "down" \relative c'' {
26     \key a \major
27     \time 3/8
28     \voiceOne
29     \repeat tremolo 6 {
30       <a e'>32
31       {
32         \change Staff = "up"
33         \voiceTwo
34         <cis a' dis>32
35       }
36     }
37   }
38 >>
39