]> git.donarmstrong.com Git - lilypond.git/commitdiff
* Documentation/user/global.itely (Creating titles):
authorNicolas Sceaux <nicolas.sceaux@free.fr>
Fri, 15 Jul 2005 17:55:56 +0000 (17:55 +0000)
committerNicolas Sceaux <nicolas.sceaux@free.fr>
Fri, 15 Jul 2005 17:55:56 +0000 (17:55 +0000)
* Documentation/user/examples.itely (All headers): change the
place of \header in \score blocks (after music block) to make
examples compile (cf. changes on parser.yy on 2005-07-10)

ChangeLog
Documentation/user/examples.itely
Documentation/user/global.itely

index d449b943bfcb93d3b65382e75ac58fc195876d58..b89983f71d80913d468c2d35b315f38dc2004549 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2005-07-15  Nicolas Sceaux  <nicolas.sceaux@free.fr>
+
+       * Documentation/user/global.itely (Creating titles):    
+       * Documentation/user/examples.itely (All headers): change the
+       place of \header in \score blocks (after music block) to make
+       examples compile (cf. changes on parser.yy on 2005-07-10)
+
 2005-07-15  Han-Wen Nienhuys  <hanwen@xs4all.nl>
 
        * lily/include/beam.hh: new struct, softcode beam quanting parameters
index f941f6efae04ba3e75292f2f8d2ce91510691573..df4ed86b4e13b647ea6560ace5949d9e7e38f333 100644 (file)
@@ -1273,19 +1273,19 @@ violin concerto as TchaikovskyPI, whereas perhaps you wish to print
 }
 
 \score {
+  { c'4 }
   \header {
     piece = "piece1"
     opus = "opus1"
   }
-  { c'4 }
 }
 
 \score {
+  { c'4 }
   \header {
     piece = "piece2"
     opus = "opus2"
   }
-  { c'4 }
 }
 @end lilypond
 
index d2e30e928ed3a92c616de42e897bd42f16bd6d9e..807f205cca5de402b4f1ea29114e4f87c015dd94 100644 (file)
@@ -912,21 +912,21 @@ may use any @ref{Text markup} commands in the header.
   }
 
   \score {
+    { c'1 }
     \header {
       piece = "piece1"
       opus = "opus1" 
     }
-    { c'1 }
   }
   \markup {
       and now...
   }
   \score {
+    { c'1 }
     \header {
       piece = "piece2"
       opus = "opus2" 
     }
-    { c'1 }
   }
 }
 @end lilypond