2003-03-04 Han-Wen Nienhuys <hanwen@cs.uu.nl>
+ * input/regression/multi-measure-rest-text.ly: new file.
+
* scm/music-functions.scm (glue-mm-rest-texts): automatically
convert MMREST-TEXT to MultiMeasureRestNumber settings.
Texts can be added to multi-measure rests by using the
@var{note}-@code{markup} syntax. An identifier
-is provided for a fermata.
+is provided for a fermata.
@lilypond[verbatim,fragment]
\time 3/4
R2._\markup { \roman "Ad lib" }
R2.^\fermataMarkup
@end lilypond
+By default, the multi-measure rest uses the number font, which does
+not contain any letters. This is the reason for the explicit
+@code{\roman} in the above example.
@cindex whole rests for a full measure
--- /dev/null
+
+\header {
+texidoc = "
+Texts may be added to the rests by setting @code{text} in
+@code{MultiMeasureRestNumber.}. This is done automatically
+for the first script specified by @code{R_\markup @{ .. @}}.
+"
+
+}
+
+\score { \notes {
+ \time 3/4
+ R2._\markup { \center << \musicglyph #"scripts-dfermata" \roman "Ad lib" >> }
+ R2.^\fermataMarkup
+ R2.^"4"
+ c2.
+}}