]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/chord-tremolo.ly
4b5cb2ca8d46ec76269d6b49143052e429d63b32
[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         \repeat "tremolo" 8 { c16 d16 }
16         \repeat "tremolo" 4 { c16 d16 }    
17         \repeat "tremolo" 2 { c16 d16 }    
18   }
19   \paper {
20     % ugh, wide
21     %linewidth = -1.0
22     linewidth = 40*\staffspace
23   }  
24   \midi { }
25 }