]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/regression/multi-measure-rest-text.ly
Rerun scripts/auxiliar/update-with-convert-ly.sh
[lilypond.git] / input / regression / multi-measure-rest-text.ly
index b18441831cf8f79024dbc0d56a8150b12be97f9e..ad3d6ccf69717615a60ed8b82c68381206b475ec 100644 (file)
@@ -1,22 +1,30 @@
-\version "2.6.0"
+\version "2.17.6"
 
 \header  {
 
-texidoc = "
+  texidoc = "
 Texts may be added to the multi-measure rests.
 
+By setting the appropriate @code{spacing-procedure}, we can make
+measures stretch to accommodate wide texts.
+
 "
 
 
 }
 
-\score {  {
+\layout { ragged-right = ##t }
+{
   \time 3/4
   \set Score.skipBars = ##t
-  R2._\markup { \center-align { \musicglyph  #"scripts.dfermata" \roman "Ad lib"  }  }
+  R2._\markup { \center-column { \musicglyph  #"scripts.dfermata" \roman "Ad lib"  }  }
   R2.^\fermataMarkup
   R2.^"4"
   R2.*3_\markup { \roman "a1b2c3" }
   R2.*10^"inner"^"top"_"inner"_"bot"
+  \override MultiMeasureRestText.springs-and-rods
+    = #ly:multi-measure-rest::set-text-rods
+
+  R2.^"very very very very very very long text"
   c'2.
-}}
+}