Hi Lilyponders,

I have two questions in the following minimal example:
1. How do you move the "SOLI" text to the left so that it doesn't overlap
the text?
2. How do I keep the ChoirStaff context but remove the opening bracket?

Thanks for your advice,

Craig

%%%%%%%

\version "2.19.36"

\paper {
  left-margin = 25
}

\score {
  \new ChoirStaff  \with {
    \consists "Instrument_name_engraver"
    instrumentName = \markup {
      \rotate #90
      \line {
        SOLI
      }
    }
    shortInstrumentName = \markup {
      \rotate #90
      \line {
        SOLI
      }
    }
  }
  <<
    \new Staff = "alto" {
      \set Staff.instrumentName = #"Alto"
      \set Staff.shortInstrumentName = #"A."
      \new Voice = "alto" {
        \repeat unfold 20 { c''1 }
      }
    }

    \new Staff = "tenor"  {
      \set Staff.instrumentName = #"Tenor"
      \set Staff.shortInstrumentName = #"T."
      \new Voice = "tenor" {
        \clef bass
        \repeat unfold 20 { c'1 }
      }
    }

    \new Staff = "bass"  {
      \set Staff.instrumentName = #"Bass"
      \set Staff.shortInstrumentName = #"B."
      \new Voice = "bass" {
        \clef bass
        \repeat unfold 20 { c1 }
      }
    }
  >>
}

%%%%%%end
*Craig Dabelstein*
e:craig.dabelst...@gmail.com
<http://www.facebook.com/craig.dabelstein>
<http://au.linkedin.com/pub/craig-dabelstein/b2/5b8/389/en>
_______________________________________________
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user

Reply via email to