]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/chord-tremolo.ly
*** empty log message ***
[lilypond.git] / input / regression / chord-tremolo.ly
1 \version "1.7.18"
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 (To ensure that the spacing engine is not confused we add some regular notes as well.) 
12 "
13 }
14   
15 \score { 
16   \context Voice \notes\relative c' {
17         % huh -> one beam missing!
18         \repeat "tremolo" 16 { d16 e }
19         \repeat "tremolo" 8 { d16 e }
20         \repeat "tremolo" 4 { d e }
21         \repeat "tremolo" 2 { d e }
22         c4
23         \break
24         \repeat "tremolo" 4 { f'8 e }
25         \repeat "tremolo" 2 { f e }
26         c4 c4
27
28         \repeat "tremolo" 3 { f8 e }
29         c4
30         c4 c4 c4 c4
31         c4 c4 c4 c4
32         c4 c4 c4 c4
33
34   }
35   \paper {
36     linewidth = 90*\staffspace
37   }  
38   \midi { }
39 }
40 %% new-chords-done %%