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

_______________________________________________
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user

Reply via email to