Hi, this could work! I will try it. But what I would like to do is to use the same independent file of the pieces,
So for example the include piece1.ly <http://piece1.ly/> Then I can just update one file… And then include the piece1.ly <http://piece1.ly/> and piece2.ly <http://piece2.ly/> into the book..? > On Sep 21, 2021, at 16:27, Knute Snortum <[email protected]> wrote: > > On Tue, Sep 21, 2021 at 11:13 AM Carlos Martinez > <[email protected]> wrote: >> >> Hi, >> >> I am trying to put together a book. A collection of 13 pieces with lilypond. > ... >> I want each piece to show its own >> >> - Title and composer >> - each piece start in its own page. >> >> I am trying to setting it up but I cannot do it! >> >> I have already engraved each piece… and would love to have the include. But >> somehow it is not working.. > ... > > If I understand your question, would this work? I don't know what's > in your includes, so I can't help you there. > > %%% > \version "2.20.0" > > music = { c'4 4 4 4 } > > \bookpart { > \header { > title = "Title 1" > composer = "Composer 1" > } > \score { > \new Staff \music > } > } > > \bookpart { > \header { > title = "Title 2" > composer = "Composer 2" > } > \score { > \new Staff \music > } > } > %%% > > -- > Knute Snortum >
