Is it possible, if I've chosen to have page numbers at the foot of the page, to replace the page number with a tagline at the foot of the last page? This just prints page number and not the tagline on the last page:

%%%%%%%%%%%%%%%%%%%%%%%%%%%
\version "2.13.10"

date = #(strftime "%d/%m/%Y" (localtime (current-time)))

\paper {
    print-first-page-number = ##t
    oddHeaderMarkup = \markup \fill-line { " " }
    evenHeaderMarkup = \markup \fill-line { " " }
    oddFooterMarkup = \markup { \fill-line {
    \bold \fontsize #3 \on-the-fly #print-page-number-check-first
    \fromproperty #'page:page-number-string } }
    evenFooterMarkup = \markup { \fill-line {
    \bold \fontsize #3 \on-the-fly #print-page-number-check-first
    \fromproperty #'page:page-number-string } }
}

\header {
    tagline = \markup \fontsize #-3.5
    {
        Engraved on \date using \with-url #"http://lilypond.org/web/";
        { LilyPond \simple #(lilypond-version) (http://lilypond.org/) }
    }
}

\relative c' {
    \repeat unfold 800 { c }
}
%%%%%%%%%%%%%%%%%%%%%%%%%%%

Nick


_______________________________________________
lilypond-user mailing list
lilypond-user@gnu.org
http://lists.gnu.org/mailman/listinfo/lilypond-user

Reply via email to