> > >Re-posting the example _without_ the line numbering might get you more > >answers. > > Ok, here we go ... >
Well, it needed some modifications; there were missing closing braces and you were creating the "music" contents of the staff before setting the instrument name. See the attached file. Note that you might have to change back "Staff.instrument" to "Staff.instrumentName" which didn't work in my version (2.8.7). Reagards, Gilles
\version "2.8.7" trebleemptymusic = { \repeat unfold 2 { \clef treble s1\break } \bar "" } bassemptymusic = { \repeat unfold 2 { \clef bass s1\break } \bar "" } \new Score \with { \override TimeSignature #'transparent = ##t defaultBarType = #"" \remove Bar_number_engraver } % \new StaffGroup << \new Staff { \set Staff.instrument = \markup {"flute"} \trebleemptymusic } \new Staff { \set Staff.instrument = \markup {"oboe"} \trebleemptymusic } \new GrandStaff << \new Staff { \set Staff.instrument = \markup { \column { \line {"clarinet"} \line {"in B" \flat} } } \trebleemptymusic } \new Staff { \set Staff.instrument = \markup { \column { \line {"clarinet"} \line {"in C"} } } \trebleemptymusic } >> \new GrandStaff << \new Staff { \set Staff.instrument = \markup { \column { \line {"horn"} \line {"in F"} } } \trebleemptymusic } \new Staff { \set Staff.instrument = \markup { \column { \line {"horn"} \line {"in C"} } } \trebleemptymusic } >> \new Staff { \set Staff.instrument = \markup {"bassoon"} \bassemptymusic } >>
_______________________________________________ lilypond-user mailing list lilypond-user@gnu.org http://lists.gnu.org/mailman/listinfo/lilypond-user