lilypond-user
[Top][All Lists]
Advanced

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

Re: : temporary staff for divisi


From: Kieren MacMillan
Subject: Re: : temporary staff for divisi
Date: Tue, 10 Nov 2009 12:31:38 -0500

Hi Stefan,

But how can I get Angular brackets for the two first violins?

Not sure what you mean by the question? Please clarify.

Regards,
Kieren.

p.s. I found your original code very difficult to read/diagnose, because of the mixing of content with presentation, indent inconsistencies, etc. — here's the version I ended up using, in case it's helpful to you:

\version "2.12.2"

violineA = {
  c''4 d'' e'' f'' g'' a'' b'' c'''\break
  <<
\new Staff \with { alignAboveContext = "ViolineA" shortInstrumentName = "Vln.1" }
      { c'''4^"solo"( d''' e''' f''' g''' a''' b''' c'''') }
    { c''4 d'' e'' f'' g'' a'' b'' c''' }
  >>
}

violineB = {
  \repeat "unfold" 2 { c'' 4 b' a' g' f' e' d' c' }
}

\score {
  \new GrandStaff <<
    \new Staff = "ViolineA"
\with { instrumentName = "Violine 1" shortInstrumentName = "Vlne. 1" }
      \violineA
    \new Staff = "ViolineB"
\with { instrumentName = "Violine 2" shortInstrumentName = "Vlne. 2" }
      \violineB
  >>
}



reply via email to

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