lilypond-user
[Top][All Lists]
Advanced

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

Re: Problems with several parts, movements


From: Reinhold Kainhofer
Subject: Re: Problems with several parts, movements
Date: Sat, 16 Feb 2008 20:24:06 +0100
User-agent: KMail/1.9.6

Am Samstag, 16. Februar 2008 schrieben Sie:
> As above, I attempted to do so, however the output as I run it states that
> there are «unexpected» \header{ } blocks.

Yes, for some weird reason, you have to put the \header block AFTER the 
staves. I.e. the following does not work:
\book {
    \header { instrument = "Violino II" }
    \score { 
        \header { piece = "Largo" }
        \new Staff { \globallargoone \violintwolargoone }
    }
}

But once you put the \header after the score and after the staff (which I find 
much less confusing, since the header also serves as some kind of headline 
for me when trying to find the correct score in a large ly file), it works:
\book {
    \score { 
        \new Staff { \globallargoone \violintwolargoone }
        \header { piece = "Largo" }
    }
    \header { instrument = "Violino II" }
}

Cheers,
Reinhold
-- 
------------------------------------------------------------------
Reinhold Kainhofer, Vienna University of Technology, Austria
email: address@hidden, http://reinhold.kainhofer.com/
 * Financial and Actuarial Mathematics, TU Wien, http://www.fam.tuwien.ac.at/
 * K Desktop Environment, http://www.kde.org, KOrganizer maintainer
 * Chorvereinigung "Jung-Wien", http://www.jung-wien.at/




reply via email to

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