On 24/11/12 06:10, Rustik wrote:
It works, bot now i have a new problem. Copyright line is disappear. I
entered «\on-the-fly #not-first-page » at footerMarkup block. Without
results.

I don't think there is a corresponding not-last-page unless there have been recent changes. This is what I use in the \paper block to have no page number on the first page, the page number centred at the bottom of the page for pages 2 to n-1, and the tagline on the final page:

\paper {
    %% cf. ly/titling-init.ly
    #(define (not-last-page layout props arg)
        (if (and (chain-assoc-get 'page:is-bookpart-last-page props #f)
            (chain-assoc-get 'page:is-last-bookpart props #f))
            empty-stencil
            (interpret-markup layout props arg)))
    oddHeaderMarkup = \markup \fill-line { " " }
    evenHeaderMarkup = \markup \fill-line { " " }
    oddFooterMarkup = \markup \fill-line { \column { \fontsize #-1
        \on-the-fly #not-first-page
        \on-the-fly #not-last-page
        \fromproperty #'page:page-number-string
        \on-the-fly #last-page \fromproperty #'header:tagline
    } }
    evenFooterMarkup = \oddFooterMarkup
}


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

Reply via email to