From: James Lowe Date: Sun, 10 Apr 2011 13:16:34 +0000 (+0100) Subject: Add clarifications to ly/titling-init.ly X-Git-Tag: release/2.13.60-1~12 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=524f726a5de0033e68525c65e58430de9b60b7ca;p=lilypond.git Add clarifications to ly/titling-init.ly Came out of Rietveld 4124056 - pushing this change to the ly file separately. --- diff --git a/ly/titling-init.ly b/ly/titling-init.ly index e99b230645..c27b7c2394 100644 --- a/ly/titling-init.ly +++ b/ly/titling-init.ly @@ -14,7 +14,7 @@ tagline = \markup { \line { %% 2014 = em dash. - + #(ly:export (format "Music engraving by LilyPond ~a~awww.lilypond.org" (lilypond-version) @@ -116,7 +116,7 @@ book last one." %% unused #(define (not-single-page layout props arg) - (if (not (and (= (chain-assoc-get 'page:page-number props -1) + (if (not (and (= (chain-assoc-get 'page:page-number props -1) (ly:output-def-lookup layout 'first-page-number)) (chain-assoc-get 'page:last? props -1))) (interpret-markup layout props arg) @@ -142,6 +142,8 @@ oddHeaderMarkup = \markup \on-the-fly #print-page-number-check-first \fromproperty #'page:page-number-string } +%% evenHeaderMarkup would inherit the value of +%% oddHeaderMarkup if it were not defined here evenHeaderMarkup = \markup \fill-line { \on-the-fly #print-page-number-check-first \fromproperty #'page:page-number-string @@ -162,3 +164,6 @@ oddFooterMarkup = \markup { } } +%% As long as evenFooterMarkup is unset, it inherits the value of +%% oddFooterMarkup, as if this were declared here: +% evenFooterMarkup = \oddFooterMarkup