Francesco,

when I started with lilypond it was confusing for me too. You can however
have multiple score blocks in one file. Then they don't end up on one
system.

My workflow on large amounts of exercises is as such:

- create a file for each exercise
- create a new file, in which you include the seperate exercises.
- only use bookparts when it are sections that start on a new page, and/or
might need a different layout.

Here is an example of what I did:

\version "2.19.16"
\paper {
  indent = 0\mm
}
\header {
 tagline = ""
}

\include "exercise01.ly"
\include "exercise02.ly"
\include "exercise03.ly"
\include "exercise04.ly"
\include "exercise05.ly"

In this case, each .ly file contains a score.

Of course you can write the different scores in one file, but I find it
better not to. The advantage is that  you can reuse the seperate exercises
if you have to make a different collection of exercises for one particular
task/student/group of students.

If you want different scores in one file without bookpart you can do the
following. It does not get rendered in one system.

exerciseOne= \relative c'' {
a b c d e
}

exerciseTwo = \relative c' {
a b c d e
}
\score {
\new Staff { \exerciseOne }
\layout { }
\midi{ }
}

\score {
\new Staff { \exerciseTwo }
\layout { }
\midi{ }
}

I hope this helped.

Bart

http://www.bartart3d.be/
On facebook <https://www.facebook.com/pages/BartArt3D/169488999795102>
On Twitter <https://twitter.com/#%21/Bart_Issimo>
On Identi.ca <http://identi.ca/bartart3d>
On Google+ <https://plus.google.com/u/0/b/116379400376517483499/>

2015-03-15 18:28 GMT+01:00 Francesco Petrogalli <
francesco.petroga...@gmail.com>:

> > Have you considered modifying the \header format for scores? If I were in
> > your situation, I might try modifying scoreTitleMarkup to look the way I
> > wanted. There are some examples at
> >
> http://lilypond.org/doc/v2.18/Documentation/notation/custom-titles-headers-and-footers#custom-layout-for-titles
> > <
> http://lilypond.org/doc/v2.18/Documentation/notation/custom-titles-headers-and-footers#custom-layout-for-titles
> >
>
> Well, the problem with such modification is that I don't know how to
> place multiple exercises in the same score.
> If I place multiple staves in a score, they get rendered together in
> the same system.
>
> Francesco
>
> _______________________________________________
> lilypond-user mailing list
> lilypond-user@gnu.org
> https://lists.gnu.org/mailman/listinfo/lilypond-user
>
_______________________________________________
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user

Reply via email to