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