lilypond-user
[Top][All Lists]
Advanced

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

Re: Line / page breaks


From: Kieren Richard MacMillan
Subject: Re: Line / page breaks
Date: Mon, 1 Mar 2004 08:08:42 -0500

Hello, Zbynek:

I don't know if this is the "optimal" technique, but in each .ly file, I have a "layout" block the sole purpose of which is to dictate line breaks:

layout = \notes
{
    s4*4*5 \break
    s4*4*3 \break
    % etc.
}

Then I just roll it into the \score block:

\score
{
    {
        \context Staff = violin
        {
            <<
                \layout
                \violinNotes
                % etc.

Since each .ly file has its own layout block, you can line-break each part or score separately.

I hope this helps!

Best regards,
Kieren.





reply via email to

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