]> git.donarmstrong.com Git - lilypond.git/commitdiff
* Documentation/user/advanced-notation.itely (Polymetric
authorMats Bengtsson <mats.bengtsson@s3.kth.se>
Sun, 9 Apr 2006 10:54:52 +0000 (10:54 +0000)
committerMats Bengtsson <mats.bengtsson@s3.kth.se>
Sun, 9 Apr 2006 10:54:52 +0000 (10:54 +0000)
notation): Update the example to use the "+" symbol and add link
to input/test/compound-time.ly.

ChangeLog
Documentation/user/advanced-notation.itely

index cc91862e1a0d42eb89b67f7b39c044892d7875f2..bd8c5e53c12df168294eace707be3d1a9dcbaea0 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2006-04-09  Mats Bengtsson  <mabe@drongo.s3.kth.se>
+
+       * Documentation/user/advanced-notation.itely (Polymetric
+       notation): Update the example to use the "+" symbol and add link
+       to input/test/compound-time.ly.
+
 2006-04-08  Graham Percival  <gpermus@gmail.com>
 
        * scm/define-grob-properties.scm: clarify docs for #'direction.
index b53d7e8192e47868a1927453a4c9f730aa2c2e74..4009241d27ef50d24e5f28dd631e3e44a92d2745 100644 (file)
@@ -1605,14 +1605,15 @@ see those sections of the documentation.
 Double time signatures are not supported explicitly, but they can be
 faked.  In the next example, the markup for the time signature is
 created with a markup text.  This markup text is inserted in the
-@internalsref{TimeSignature} grob.
+@internalsref{TimeSignature} grob. See also 
+@inputfileref{input/@/test,compound@/-time@/.ly}).
 
 @lilypond[verbatim,ragged-right]
 % create 2/4 + 5/8
 tsMarkup =\markup {
-  \number {
+  \override #'(baseline-skip . 2) \number {
     \column { "2" "4" }
-    \musicglyph #"scripts.stopped"
+    \lower #1 "+"
     \bracket \column { "5" "8" }
   }
 }