]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/regression/chord-tremolo.ly
*** empty log message ***
[lilypond.git] / input / regression / chord-tremolo.ly
index 6d941ff9715707ebb379cc32a8e397388a218fef..b6fb165e289b9c8dc4fe66e87f721132c9a19564 100644 (file)
@@ -1,3 +1,5 @@
+\version "1.7.16"
+
 \header{
 texidoc="
 Chord tremolos look like beams, but are a kind of repeat symbol.
@@ -5,16 +7,33 @@ To avoid confusion, chord tremolo beams do not reach the stems, but
 leave a gap.  Chord tremolo beams on half notes are not ambiguous,
 as half notes cannot appear in a regular beam, and should reach the 
 stems.
-";
+
+(To ensure that the spacing engine is not confused we add some regular notes as well.) 
+"
 }
   
 \score { 
-  \context Voice \notes\relative c {
-       \repeat "tremolo" 8 { c16 d16 }
-       \repeat "tremolo" 4 { c16 d16 }    
+  \context Voice \notes\relative c' {
+        % huh -> one beam missing!
+       \repeat "tremolo" 8 { d16 e }
+       \repeat "tremolo" 4 { d e }
+       \repeat "tremolo" 2 { d e }
+       c4
+       \break
+       \repeat "tremolo" 4 { f'8 e }
+       \repeat "tremolo" 2 { f e }
+       c4 c4
+
+       \repeat "tremolo" 3 { f8 e }
+       c4
+       c4 c4 c4 c4
+       c4 c4 c4 c4
+       c4 c4 c4 c4
+
   }
   \paper {
-    linewidth=-1.0;
+    linewidth = 90*\staffspace
   }  
   \midi { }
 }
+%% new-chords-done %%