]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/chord-tremolo-other-commands.ly
Doc-es: various updates.
[lilypond.git] / input / regression / chord-tremolo-other-commands.ly
1 \version "2.19.21"
2
3 \header {
4   texidoc = "
5 To calculate the total duration of chord tremolos, only real notes shall be 
6 counted, no other commands.
7 "
8 }
9
10 right = \relative c'' {
11   s2
12 }
13
14 left = \relative {
15   % This tremolo contains just two notes (but three lilypond events/commands!)
16   \repeat tremolo 4 { f16 \change Staff = "right" f'} 
17 }
18
19 \score {
20   \new PianoStaff <<
21     \new Staff = "right" { \right }
22     \new Staff = "left" { \clef bass \left }
23   >>
24 }