]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/regression/repeat-unfold-tremolo.ly
Issue 5167/6: Changes: show \markup xxx = ... \etc assignments
[lilypond.git] / input / regression / repeat-unfold-tremolo.ly
index c1a1bde861bf14963b76608920a8f152333eb241..35866ca7aca426765fca29fd3d808551465e7051 100644 (file)
@@ -1,18 +1,22 @@
-\version "2.2.0"
-\header {
-
-    texidoc = "Unfolding tremolo repeats. Both fragments fill one 2/4
- measure with 32nd notes exactly."
+\version "2.16.0"
 
+\header {
+  texidoc = "Unfolding tremolo repeats.  All fragments fill one
+measure with 16th notes exactly."
 }
 
+\layout { ragged-right = ##t }
 
-\score{
-    \notes{
-       \time 2/4 
-       \apply #unfold-repeats  
-       { \repeat tremolo 8 { c'32 e' } |
-         \repeat tremolo 16 c'32 } | \bar "|."
-    }
-    \paper { raggedright = ##t }  
+\relative c' {
+  \time 2/4 
+  \unfoldRepeats {
+    \repeat tremolo 4 { c16 e } |
+    \repeat tremolo 8 c16
+  } |
+  \time 3/4 
+  \unfoldRepeats {
+    \repeat tremolo 6 { c16 e } |
+    \repeat tremolo 12 { c16 } |
+  }
+  \bar "|."  
 }