lilypond-user
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Space foot note away from page number at bottom of page


From: Nick Payne
Subject: Re: Space foot note away from page number at bottom of page
Date: Sun, 04 Mar 2012 09:19:50 +1100
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:10.0.2) Gecko/20120216 Thunderbird/10.0.2

On 01/03/12 13:08, Nick Payne wrote:
\version "2.15.25"

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

\relative c' {
    \override FootnoteItem #'Y-extent = #'(-4 . 4)
\footnote #'(0.5 . 5) #'NoteHead \markup { Now is the time for all good men to come to the aid of the party }
    c4 c c c
    \repeat unfold 600 { c4 }
}

Well, this spaces the footnote away from the page number:

\version "2.15.31"

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

\relative c' {
    \override FootnoteItem #'Y-extent = #'(-4 . 4)
    \footnote #'(0.5 . 5) #'NoteHead \markup { \column { \left-align {
\line { Now is the time for all good men to come to the aid of the party }
    \line { " " } } } }
    c4 c c c
    \repeat unfold 600 { c4 }
}

However, it's not a very satisfactory solution, as you have to manually choose which is going to be the last footnote on the page, and that can change if the page layout changes.

Nick



reply via email to

[Prev in Thread] Current Thread [Next in Thread]