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: [EMAIL PROTECTED], 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/


_______________________________________________
lilypond-user mailing list
lilypond-user@gnu.org
http://lists.gnu.org/mailman/listinfo/lilypond-user

Reply via email to