Il 11/01/2013 04:37, Shane Brandes ha scritto:
\version "2.17.9"


\include a.ly <http://a.ly>

\include b.ly <http://b.ly>

\include etc.ly <http://etc.ly>


Yields a problematic result as I have header files in every \include (
every file is its own compilable score) therefore I tried issuing
print-all-headers =##t which causes only the title from the last header
to print before every included file. Is it possible to get this to work
or is there some sort of other mummery to go through.


It's the same question asked by Christopher Maden today.
You must put the \header inside \bookpart.

I use this structure for each piece:

\bookpart {
  \header {
    title = ""
  }
  \paper {
    markup-system-spacing =  #'((padding . 10))
  }
  \score {
    \music
    \layout {
      indent = #0
      %system-count = #
    }
  }
  \score {
    \unfoldRepeats \music
    \midi {
      \tempo 4 = 160
    }
  }

Then in the book file I just include every single file.

--
Federico

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

Reply via email to