lilypond-user
[Top][All Lists]
Advanced

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

Re: How to make the copyright notice appear with the tagline


From: Gilles THIBAULT
Subject: Re: How to make the copyright notice appear with the tagline
Date: Sun, 6 Apr 2008 14:45:26 +0200


If in your last example you write the \header block outside and before
of the \score block, you obtain what you wanted.
It's true.
So it means that we cannot use oddFooterMarkup for a book with several scores to have, for example the "piece" name in the bottom of a page.

%%%%%%%%%%%%%%%%%%%%%%%%%%%
\version "2.11.42"

musicOne = {\repeat "unfold" 25 {c'1 \break} \pageBreak}
musicTwo = {\repeat "unfold" 25 {d'1  \break} }

\paper {
   oddFooterMarkup = \markup {
           \fromproperty #'header:title %% works well
           " - "
           \fromproperty #'header:piece %% doesn't work
   }
}
\header { title = "MainTitle" }

\score {
   \musicOne
   \layout { }
   \header { piece = "piece 1"}
}

\score {
   \musicTwo
   \layout { }
   \header { piece = "piece 2"}
}
%%%%%%%%%%%%%%%%%%%%%%%%%%

Gilles






reply via email to

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