]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/chord-tremolo.ly
6267949f9f7c9e99176ef13e4445281e80ee7b15
[lilypond.git] / input / regression / chord-tremolo.ly
1
2 \header{
3 texidoc="
4 Chord tremolos look like beams, but are a kind of repeat symbol.
5 To avoid confusion, chord tremolo beams do not reach the stems, but 
6 leave a gap.  Chord tremolo beams on half notes are not ambiguous,
7 as half notes cannot appear in a regular beam, and should reach the 
8 stems.
9 ";
10 }
11   
12 \score { 
13   \context Voice \notes\relative c' {
14         \repeat "tremolo" 8 { c16 d16 }
15         \repeat "tremolo" 4 { c16 d16 }    
16         \repeat "tremolo" 2 { c16 d16 }    
17   }
18   \paper {
19     % ugh, wide
20     %linewidth = -1.0;
21     linewidth = 40*\staffspace;
22   }  
23   \midi { }
24 }