lilypond-user
[Top][All Lists]
Advanced

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

Re: Only one title prints if I try to \include > 1 tune on a sheet


From: Phil Holmes
Subject: Re: Only one title prints if I try to \include > 1 tune on a sheet
Date: Sat, 10 Jul 2010 14:45:16 +0100

Yes,

This is documented in the Notation Reference, section 3.2.1 called "Creating Titles", so it's quite easy to find. Using the information there, you can see that this works:

\paper{
 print-all-headers = ##t
}

\score {
 {c'4 }
 \header {
   title = "first title"
 }
}

\score {
 {c'4 }
 \header {
   title = "second title"
 }
}


--
Phil Holmes


----- Original Message ----- From: "Federico Bruni" <address@hidden>
To: "hsweet" <address@hidden>
Cc: <address@hidden>
Sent: Saturday, July 10, 2010 2:28 PM
Subject: Re: Only one title prints if I try to \include > 1 tune on a sheet


Il giorno sab, 10/07/2010 alle 05.33 -0700, hsweet ha scritto:
I am trying to print several short pieces on one sheet by using \include. It works fine, except only the title of the 2nd tune prints. I am trying to get

FIRST TUNE TITLE
notes.......
NEXT TUNE TITLE
notes

This is all the code I've used.

\version "2.12.2"
\include "first_tune.ly"
\include "next_tune.ly"

Try to add:

\paper{
 print-all-headers = ##t
}

in the file where you include the music


_______________________________________________
lilypond-user mailing list
address@hidden
http://lists.gnu.org/mailman/listinfo/lilypond-user





reply via email to

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