]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/cross-staff-tremolos.ly
Merge remote-tracking branch 'origin/master' into translation
[lilypond.git] / Documentation / snippets / cross-staff-tremolos.ly
1 %% DO NOT EDIT this file manually; it is automatically
2 %% generated from LSR http://lsr.di.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.18.0"
8
9 \header {
10   lsrtags = "keyboards, real-music, repeats"
11
12   texidoc = "
13 Since @code{\\repeat tremolo} expects exactly two musical arguments for
14 chord tremolos, the note or chord which changes staff within a
15 cross-staff tremolo should be placed inside curly braces together with
16 its @code{\\change Staff} command.
17
18 "
19   doctitle = "Cross-staff tremolos"
20 } % begin verbatim
21
22 \new PianoStaff <<
23   \new Staff = "up" \relative c'' {
24     \key a \major
25     \time 3/8
26     s4.
27   }
28   \new Staff = "down" \relative c'' {
29     \key a \major
30     \time 3/8
31     \voiceOne
32     \repeat tremolo 6 {
33       <a e'>32
34       {
35         \change Staff = "up"
36         \voiceTwo
37         <cis a' dis>32
38       }
39     }
40   }
41 >>