]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/regression/multi-measure-rest.ly
*** empty log message ***
[lilypond.git] / input / regression / multi-measure-rest.ly
index c99aa0a88e1ac1ea2046258b05bf4e6c30f76cdc..9ad7e33a1e8c17dcbc34991e94dc7aa9143ce15a 100644 (file)
@@ -1,20 +1,38 @@
+\version "2.7.39"
 \header{
-texidoc="
-Multiple measure rests do not collide with barlines and clefs.  They
+
+  texidoc="
+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.
+
+"
+}
+
+\layout {
+  \context {
+    \Score
+    skipBars = ##t
+  }
+  ragged-right = ##t   
 }
 
 
-\score { \notes { \time 3/4; \key cis \major;
-           R2.*15 R2. R2.*7 }
-       \paper {
-       \translator {
-               \ScoreContext
-               skipBars = ##t
-       }
-       linewidth = -1.;        
-       }
+{
+  \time 3/4 \key cis \major
+  R2.*15
+  
+  R2.
+  R2.*3
+  R2.*9
+  R2.*11
+
+  \time 8/4 R1*2
 }
+
+