lilypond-user
[Top][All Lists]
Advanced

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

2 questions on choir staff


From: Craig Dabelstein
Subject: 2 questions on choir staff
Date: Sun, 4 Sep 2016 19:40:26 +1000


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
 

reply via email to

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