@bug squad Could you please raise an issue to enhance the documentation to include the information in Nicolas's reply below. Thanks.
Trevor ----- Original Message ----- From: "Nicolas Sceaux" <nicolas.sce...@free.fr> To: "Christopher R. Maden" <cr...@maden.org> Cc: <lilypond-u...@gnu.org> Sent: Saturday, January 12, 2013 10:50 AM Subject: Re: Book title showing up on every score in a songbook (2.14.2) Le 12 janv. 2013 à 11:10, Christopher R. Maden <cr...@maden.org> a écrit : > I expect \bookpart{} to start a new page; and > if the bookpart has a title or any other header info, I expect that to > be printed at the top of that new page. Christopher, Indeed, \bookpart starts a new page. In your example, the \book block immediately starts with a \bookpart block: you explicitely ask that the first page is that of the bookpart. So there is now place for the book block title to be printed. if you add e.g. a markup before the first bookpart, then there will be a page before the bookpart, and the book title will be printed. \book { \header { title = "Book Title" } \markup { first book page } \bookpart { \header { title = "Book Part Title" } \markup { first bookpart page } } } Now, what may be more counter-intuitive, is that, as bookparts inherit the book header block, if a bookpart does not define a title, then the surrounding book title will be used. \book { \header { title = "Book Title" } \markup { first book page } \bookpart { \header { title = "Book Part Title" } \markup { first bookpart page } } \bookpart { \markup { A second book part, inherits book title } } } (This as been discussed ages ago, and that's not a bug either, but a feature… I'm not sure how well it is documented, though.) What I'd recommend, when using bookparts, is to move the book title into the first bookpart header block. In the case where there is a title page, a dedicated bookpart can be used. Nicolas _______________________________________________ lilypond-user mailing list lilypond-u...@gnu.org https://lists.gnu.org/mailman/listinfo/lilypond-user _______________________________________________ bug-lilypond mailing list bug-lilypond@gnu.org https://lists.gnu.org/mailman/listinfo/bug-lilypond