]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/chord-tremolo.ly
8312a186f171e92c9ee7797d8333be89b1ae1778
[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 In this example, each tremolo lasts exactly one measure.
12
13 (To ensure that the spacing engine is not confused we add some regular notes as well.) 
14 "
15 }
16   
17 \score { 
18   \context Voice \notes\relative c' {
19         \time 4/4
20         \repeat "tremolo" 16 { d32 e }
21         \repeat "tremolo" 8 { d16 e }
22         \repeat "tremolo" 4 { d8 e }
23
24         \time 3/4
25         \repeat "tremolo" 12 { d32 e }
26         \repeat "tremolo" 6 { d16 e } 
27         \repeat "tremolo" 3 { d8 e } 
28
29         \time 2/4
30         \repeat "tremolo" 8 { d32 e }
31         \repeat "tremolo" 4 { d16 e }
32         \repeat "tremolo" 2 { d8 e }
33
34         \time 1/4
35         \repeat "tremolo" 4 { d32 e }
36         \repeat "tremolo" 2 { d16 e }
37
38         c4 c4 c4 c4 c4 
39   }
40
41   \midi { }
42 }
43 %% new-chords-done %%