lilypond-user
[Top][All Lists]
Advanced

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

Re: multiple files in one


From: Federico Bruni
Subject: Re: multiple files in one
Date: Fri, 11 Jan 2013 08:46:48 +0100
User-agent: Mozilla/5.0 (X11; Linux i686; rv:17.0) Gecko/20130107 Thunderbird/17.0.2

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



reply via email to

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