]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/user/changing-defaults.itely
* scm/stencil.scm (stack-lines): return empty-stencil if argument
[lilypond.git] / Documentation / user / changing-defaults.itely
index d560a03b0ce8848d20102ad5ac2a312308964860..424d09575a90b9f4a8e5c6a34b501c212dc45aa4 100644 (file)
@@ -2159,15 +2159,42 @@ Different fonts may be selected for each element by using
 @}
 @end example
 
-A more advanced option is to change the Scheme functions
-@code{make-book-title} and @code{make-score-title} functions, defined
-in the @code{\paper} section of the @code{\book} block.  These functions
-create a block of titling, given the information in the
-@code{\header}.  The init file @file{ly/@/titling@/.scm} shows how the
-default format is created, and it may be used as a template for
-different styles.
+A more advanced option is to change the definitions of the following
+variables in the @code{\paper} block. The init file
+@file{ly/titling-init.ly} lists the default layout.
+
+@itemize @code
+@item bookTitleMarkup
+  This is the title put over an entire @code{\book} block. Typically,
+  it has the composer and the title of the piece
+  
+@item scoreTitleMarkup
+  This is the title put over a @code{\score} block within a
+@code{\book}. Typically, it has the name of the movement (@code{piece}
+field).
+
+@item oddHeaderMarkup
+  This is the page header for odd-numbered pages. 
+
+  @item evenHeaderMarkup
+  This is the page header for even-numbered pages.  If unspecified,
+  the odd header is used instead.
+
+  By default, headers are defined such that the page number is on the
+  outside edge, and the instrument is centered.
+
+  @item oddFooterMarkup
+  This is the page footer for odd-numbered pages. 
+  
+@item evenFooterMarkup
+  This is the page footer for even-numbered pages.  If unspecified,
+  the odd header is used instead.
+
+  By default, the footer has the copyright notice on the first, and
+  the tagline on the last page.
+@end itemize
+
 
 @cindex \paper
 @cindex header
 @cindex footer