lilypond-user
[Top][All Lists]
Advanced

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

Re: 2 questions on choir staff


From: Craig Dabelstein
Subject: Re: 2 questions on choir staff
Date: Mon, 5 Sep 2016 05:47:41 +1000

Hi Pierre,

Thanks for your advice.

Craig

On 4 September 2016 at 21:15, Pierre Perol-Schneider <address@hidden> wrote:
Hi Craig,

How about :

\version "2.19.36"

\paper {
  left-margin = 25
}

\score {
  \new ChoirStaff  \with {
    %\consists "Instrument_name_engraver" %% <= why ?
    instrumentName = \markup {
      \rotate #90 "SOLI"
    }
    shortInstrumentName = \markup {
      \rotate #90 "SOLI" \hspace #3
    }
  }
  <<
    \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 }
      }
    }
  >>
  \layout {
    \context {
      \Score
     
    }
    \context {
      \ChoirStaff
      \override InstrumentName.self-alignment-X = #LEFT
      \remove System_start_delimiter_engraver
    }
    \context {
      \Staff
      \override InstrumentName.self-alignment-X = #RIGHT
    }
  }
}

Cheers,
Pierre

2016-09-04 11:40 GMT+02:00 Craig Dabelstein <address@hidden>:

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
 

_______________________________________________
lilypond-user mailing list
address@hidden
https://lists.gnu.org/mailman/listinfo/lilypond-user




reply via email to

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