> hi people, > > as i've already mentioned before, i'm working on rearranging one of the > suites from the water music for two trumpets and two trombones. the > suite consists of 5 pieces. my problem: for each instrument, i'd like to ~> print all of the pieces into one document, but have each piece > separately titled.
It is not necessary to use lilypond-book. Take a look at ftp://sca.uwaterloo.ca/pub/Mutopia/MozartWA/KV560b/k560b/k560b.ly The trick is to use multiple scores in the .ly file: ---------------------------------------------------------------------- \score { % First piece \header { title = "First piece" } } \score { % Second piece \header { title = "Second piece" } } % ... and so on ---------------------------------------------------------------------- Maurizio _______________________________________________ Lilypond-user mailing list [EMAIL PROTECTED] http://mail.gnu.org/mailman/listinfo/lilypond-user
