lilypond-user
[Top][All Lists]
Advanced

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

title page for \book


From: Graham Percival
Subject: title page for \book
Date: Fri, 29 Jul 2005 03:51:46 -0700

I'm working on a \book that contains distinct pieces; as such, I've created
a separate title page.

1)  If you're interested in using it, here's the code.
2) If you're really interested in using it, I could investigate making this
part of LilyPond.  And clean it up, of course.  :)
3) Currently the bottom part of the title page is really bare; I'm thinking of
making an .eps that could go there.  I know that we talked about logos
for lilypond a few months ago; if anything else has happened along those
lines, I'd be interested to hear about it.

Cheers,
- Graham


\version "2.6.1"
tpTitle=\markup{This is the \caps Title}
tpSubTitle="Sub-Title"
tpComposer="Composer Name"

\book{
\markup{
  \override #'(baseline-skip . 8)
  \column {
    \hspace #1
    \hspace #1
    \hspace #1
    \override #'(baseline-skip . 1)
    \column {
      \fill-line {
        \override #'(font-size . 6)
        \bold
        \tpTitle }
      \hspace #1
      \fill-line {
        \override #'(font-size . 4)
        \tpSubTitle }
      \hspace #1
      \hspace #1
      \fill-line {
        \override #'(font-size . 2)
        \italic
        \tpComposer }
      }
    }
}
\score{
  {c'4\f }    % first piece goes here
  \header {
breakbefore = ##t
piece = " "
}
}
}





reply via email to

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