]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/chord-tremolo.ly
patch::: 1.5.30.uu1
[lilypond.git] / input / regression / chord-tremolo.ly
1 \version "1.3.146"
2
3 \header{
4 texidoc="
5 Chord tremolos look like beams, but are a kind of repeat symbol.
6 To avoid confusion, chord tremolo beams do not reach the stems, but 
7 leave a gap.  Chord tremolo beams on half notes are not ambiguous,
8 as half notes cannot appear in a regular beam, and should reach the 
9 stems.
10 "
11 }
12   
13 \score { 
14   \context Voice \notes\relative c' {
15         % huh -> one beam missing!
16         \repeat "tremolo" 8 { d16 e }
17         \repeat "tremolo" 4 { d e }
18         \repeat "tremolo" 2 { d e }
19         \repeat "tremolo" 1 { d e }
20         \repeat "tremolo" 1 { d e }
21         \break
22         \repeat "tremolo" 4 { f'8 e }
23         \repeat "tremolo" 2 { f e }    
24         \repeat "tremolo" 1 { f e }
25   }
26   \paper {
27     linewidth = 90*\staffspace
28   }  
29   \midi { }
30 }