]> git.donarmstrong.com Git - lilypond.git/commitdiff
new file.
authorHan-Wen Nienhuys <hanwen@xs4all.nl>
Tue, 4 Mar 2003 15:59:07 +0000 (15:59 +0000)
committerHan-Wen Nienhuys <hanwen@xs4all.nl>
Tue, 4 Mar 2003 15:59:07 +0000 (15:59 +0000)
ChangeLog
Documentation/user/refman.itely
input/regression/multi-measure-rest-text.ly [new file with mode: 0644]

index a404eadc9fbb7b5ef6c835195ae5494c0bb6a4ef..06e120596f448ed074e2f5eb12c53a7e409b91ab 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,7 @@
 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.
 
index 9feee6ba715193e9bc662983fd447185f9b644ac..e4533d49999c0e6b6111d95d49c0029f8dd281be 100644 (file)
@@ -3863,13 +3863,16 @@ rest centered in the measure, regardless of the time signature.
 
 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 
 
diff --git a/input/regression/multi-measure-rest-text.ly b/input/regression/multi-measure-rest-text.ly
new file mode 100644 (file)
index 0000000..4ee40d7
--- /dev/null
@@ -0,0 +1,17 @@
+
+\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.
+}}