lilypond-user
[Top][All Lists]
Advanced

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

Re: title on a separate page


From: Valentin Villenave
Subject: Re: title on a separate page
Date: Mon, 5 Oct 2009 21:39:18 +0200

On Mon, Oct 5, 2009 at 9:34 PM, Kieren MacMillan
<address@hidden> wrote:
> I think Valentin probably meant you should try something like the attached.

Actually, that isn't even needed.

Susan: in fact, \book is your friend:


\version "2.10.33"
% I strongly recommend using 2.12 or 2.13!

\paper {
 print-page-number=##f
 ragged-bottom=##t
 ragged-last-bottom=##t
}

#(set-global-staff-size 14)

\header {
 title = "Mask"
%  poet = "Eva Wiest"
 composer = "Eva Wiest"
 copyright = "Eva Wiest (http://summerandfall.de/)"
 tagline = ##f
}

melody = \relative c' {
 a'1 ~ a2
 a4 b4 c2 c4 c4 b2 c4 b4 a2 a4 g4 e2
 a4 b4 c2 c4 c4 b2 a4 g4 a1 ~ a2
 a4 b4
}

textI = \lyricmode {
 She
 She is cold as blue ice with a face of gra -- nite,
 she will ne -- ver give up or give in,
 She won't
}

guitar = \chordmode {
 a1:m f a:m g a:m e
 a:m g f r
}

\book {
\pageBreak
  \score {
   <<
     \new ChordNames { \set chordChanges = ##t \guitar }
     \new Voice = "one" { \clef treble \melody }
     \new Lyrics \lyricsto "one" { \textI }
   >>
   \layout { indent = 0.0\cm }
   \header {
    % title= "another title if you need it"
   }
  }
}

Cheers,
Valentin




reply via email to

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