]> git.donarmstrong.com Git - lilypond.git/commitdiff
* Documentation/user/programming-interface.itely (Markup
authorMats Bengtsson <mats.bengtsson@s3.kth.se>
Mon, 8 Aug 2005 08:14:41 +0000 (08:14 +0000)
committerMats Bengtsson <mats.bengtsson@s3.kth.se>
Mon, 8 Aug 2005 08:14:41 +0000 (08:14 +0000)
construction in Scheme): Corrected example and tried to clarify
the implicit \line in the table.

ChangeLog
Documentation/user/programming-interface.itely

index b57b8707368f98a508c604a6fd5d74e3420e9d81..d5cc1fc2b27fbe969e2b87f557fe86a395406df0 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2005-08-08  Mats Bengtsson  <mabe@drongo.s3.kth.se>
+
+       * Documentation/user/programming-interface.itely (Markup
+       construction in Scheme): Corrected example and tried to clarify
+       the implicit \line in the table.
+
 2005-08-07  Graham Percival  <gpermus@gmail.com>
 
        * Documentation/user/instrument-notation.itely: moved
index ace314a1e0404089c7c72da57bd7e3ef09a5582c..302df673ed4031c2835600865c887580422c3142 100644 (file)
@@ -455,8 +455,8 @@ providing a LilyPond-like syntax.  For example,
 @noindent
 is equivalent to:
 @example
-\markup \column < @{ \bold \italic "hello" \raise #0.4 "world" @}
-                  \bigger @{ foo bar baz @} >
+\markup \column { \line @{ \bold \italic "hello" \raise #0.4 "world" @}
+                  \bigger \line @{ foo bar baz @} }
 @end example
 
 @noindent
@@ -467,9 +467,11 @@ is this table:
 @quotation
 @multitable @columnfractions .3 .3
 @item @b{LilyPond} @tab @b{Scheme}
+@item @code{\markup@{ ... @}} @tab @code{( markup ... )}
+@item @code{\markup@{ markup1 markup2 ... @}} @tab 
+        @code{(markup #:line ( markup1 markup2 ... ))}
 @item @code{\command} @tab @code{#:command}
 @item @code{\variable} @tab @code{variable}
-@item @code{@{ ... @}} @tab @code{#:line ( ... )}
 @item @code{\center-align @{ ... @}} @tab @code{#:center-align ( ... )}
 @item @code{string} @tab @code{"string"}
 @item @code{#scheme-arg} @tab @code{scheme-arg}