lilypond-user
[Top][All Lists]
Advanced

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

Re: lilypond book


From: Knute Snortum
Subject: Re: lilypond book
Date: Tue, 21 Sep 2021 14:27:22 -0700

On Tue, Sep 21, 2021 at 11:13 AM Carlos Martinez
<carlos@newsoundmusicstudio.com> 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



reply via email to

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