]> git.donarmstrong.com Git - lilypond.git/commitdiff
Docs: Make manual titles consistent ("GNU LilyPond --- Manual Title")
authorReinhold Kainhofer <reinhold@kainhofer.com>
Tue, 30 Sep 2008 16:54:16 +0000 (18:54 +0200)
committerReinhold Kainhofer <reinhold@kainhofer.com>
Tue, 30 Sep 2008 20:30:27 +0000 (22:30 +0200)
In the IR use a proper @top node with the IR title

Documentation/user/lilypond-learning.tely
Documentation/user/lilypond-program.tely
Documentation/user/lilypond.tely
Documentation/user/music-glossary.tely
input/lsr/lilypond-snippets.tely
scm/documentation-generate.scm
scm/documentation-lib.scm

index 8d0bd1eb348db766c5108a06a4332e280d619a76..ea074f5c8a7e3605bfa48f9836ef86680c9ca3df 100644 (file)
@@ -99,7 +99,7 @@ Free Documentation License''.
 
 @ifnottex
 @node Top
-@top GNU LilyPond --- learning manual
+@top GNU LilyPond --- Learning Manual
 
 This is the Learning Manual (LM) for GNU LilyPond version @version{}.
 For more information about how this fits with the other
index 86beebdd4990f19a33675c48c616e1e470036d81..b1d8fe1f841f34b8bccaea2d7f0f1e7f174b65bc 100644 (file)
@@ -99,7 +99,7 @@ Free Documentation License''.
 
 @ifnottex
 @node Top
-@top GNU LilyPond --- program usage
+@top GNU LilyPond --- Application Usage
 @c HJJ: Info needs `@top', which is a synonym for `@unnumbered' in TeX.
 
 This is the Application Usage (AU) manual for GNU LilyPond version @version{}.
index 5b16a3b6a4a94b57b7f4bc9ff5e40aff90aa1eb3..943d09632ef6db24b3519062a9eee31e74b85248 100644 (file)
@@ -133,7 +133,8 @@ Free Documentation License''.
 
 @ifnottex
 @node Top
-@top GNU LilyPond --- The music typesetter
+@top GNU LilyPond --- Notation Reference
+@titlefont The music typesetter
 @c HJJ: Info needs `@top', which is a synonym for `@unnumbered' in TeX.
 
 This is the Notation Reference (NR) for GNU LilyPond version @version{}.
index a7e163a49018ca4e0195563fbee2b6f854609a3b..d5ac7e32a57c531bda976d1539e5ade6dbcd96a0 100644 (file)
@@ -60,7 +60,7 @@ Copyright @copyright{} 1999--2007 by the authors
 
 @ifnottex
 @node Top
-@top Music glossary
+@top Music Glossary
 @end ifnottex
 
 
index 678d93b87cdb4d3f1988411bd904b1e16b89db9f..ff690e67775963720ae57155928c98c92ce11af0 100644 (file)
@@ -108,7 +108,7 @@ or figure for each example to see the corresponding input file.
 
 @ifnottex
 @node Top
-@top LilyPond Snippet List
+@top GNU LilyPond --- Snippets List
 
 This document shows a selected set of LilyPond snippets from the
 @uref{http://lsr@/.dsi@/.unimi@/.it,LilyPond Snippet Repository}
index 36af5b3a698baf16b83c714350e2783101ba7c8e..e486e04f9e103ea018d4938617c5817772bd6206 100644 (file)
@@ -119,11 +119,11 @@ For LilyPond version @version{}
 
 (define top-node
   (make <texi-node>
-    #:name "Top"
+    #:name "GNU LilyPond -- Internals Reference"
     #:text
     (string-append  "
 @end ifnottex
-This is the program reference for version "
+This is the Internals Reference (IR) for version "
                    (lilypond-version)
                    " of LilyPond, the GNU music typesetter.")
 
index 4a25f5420c633a9320d6c4d53dd8e67efe13dac5..148728abb6e2e78d48ed44b5b8c8d7a824f7ecee 100644 (file)
@@ -26,8 +26,8 @@
   (display
    (string-append
     "\n@node "
-    (node-name node)
-    "\n\n"
+    (if (= level 0) "Top" (node-name node))
+    "\n"
     (if (appendix? node)
         (texi-appendix-section-command level)
         (texi-section-command level))