]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/regression/multi-measure-rest.ly
* input/regression/markup-syntax.ly: remove \score.
[lilypond.git] / input / regression / multi-measure-rest.ly
index 01732e4e887d8f3fd18b43df52607ad2a730e3be..ae612959468020a64c496f8feeb49dae93d0def2 100644 (file)
@@ -1,20 +1,37 @@
+\version "2.4.0"
 \header{
+
 texidoc="
-Multiple measure rests do not collide with barlines and clefs.  They
+Multi-measure rests do not collide with barlines and clefs.  They
 are not expanded when you set @code{Score.skipBars}.  Although the
 multi-measure-rest is a Spanner, minimum distances are set to keep it
 colliding from barlines. 
-";
+
+Rests over measures during longer than 2 wholes use breve rests. When
+more than 10 or more measures (tunable through @code{expand-limit})
+are used then a different symbol is used.
+
+"
 }
-\version "1.3.117";
 
-\score { \notes { \time 3/4; \key cis \major;
-           R2.*15 R2. R2.*7 }
-       \paper {
-       \translator {
-               \ScoreContext
+
+\score {  {
+    \time 3/4 \key cis \major
+    R2.*15
+  
+    R2.
+    R2.*3
+    R2.*9
+    R2.*11
+
+\time 8/4 R1*2
+}
+       \layout {
+       \context {
+               \Score
                skipBars = ##t
        }
-       linewidth = -1.;        
+       raggedright = ##t       
        }
 }
+