lilypond-user
[Top][All Lists]
Advanced

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

Re: Padding between last system and footer


From: Kieren MacMillan
Subject: Re: Padding between last system and footer
Date: Wed, 18 Jan 2017 13:46:41 -0500

Hi Risto,
(p.s. that's my middle name as I was baptized!)

> What if I have e.g. a 4 page score? Surely, the ragged-last-bottom only 
> affects the page 4, not the problematic pages 2–3?

Sorry. When you said “last system”, I thought you meant of the whole score.

> Adding a blank line to the footer is not really an option because sometimes 
> the score is PD and there's no copyright. Then, I'd like to use all the space 
> that's available.

Then make it conditional (using a function), or add space to the copyright 
manually:

%%  SNIPPET BEGINS
\version "2.19.54"
\language "english"

\header {
  tagline = ##f
}

\paper {
  evenHeaderMarkup = \markup \null
  ragged-bottom = ##f
}

\layout {
  \context {
    \GrandStaff
    \override StaffGrouper.staff-staff-spacing =
      #'((basic-distance . 1000) (stretchability . 1000))
  }
}

theScore =
\new GrandStaff <<
  \new Staff { c''1 }
  \new Staff { c''1 }
>>

\bookpart {
  \header {
    copyright = \markup \column { \vspace #12 "Copyright ©2017 Kieren 
MacMillan" }
  }
  \score { \theScore }
}

\bookpart {
  \score { \theScore }
}
%%  SNIPPET ENDS

Hope that helps!
Kieren.
________________________________

Kieren MacMillan, composer
‣ website: www.kierenmacmillan.info
‣ email: address@hidden




reply via email to

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