lilypond-user
[Top][All Lists]
Advanced

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

Re: Book title showing up on every score in a songbook (2.14.2)


From: Federico Bruni
Subject: Re: Book title showing up on every score in a songbook (2.14.2)
Date: Fri, 11 Jan 2013 09:09:11 +0100
User-agent: Mozilla/5.0 (X11; Linux i686; rv:17.0) Gecko/20130107 Thunderbird/17.0.2

Il 11/01/2013 06:06, Christopher R. Maden ha scritto:
I have a songbook I created in LilyPond 2.12.3.  I recently upgraded
to 2.14.2.[*]

Suddenly, every song has the book title*and*  the song title at the
start.  Using print-all-headers only makes things worse, as I get the
book title but*not*  the song title.

You've placed the header block of bookpart in the wrong place.
It should be in the beginning, before the \score block.

The following input works:


\version "2.14.2"

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

\book {
  \header {
    title = "My Songbook"
  }
  \markuplines \table-of-contents
  \bookpart {
    \tocItem \markup { My Song }
    \label #'mySong
    \header {
        title = "My Song"
    }
    \score {
      \new Staff {
        \relative c' { c4 c c c }
      }
    }
  }
}


--
Federico



reply via email to

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