lilypond-user
[Top][All Lists]
Advanced

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

Re: Setting the width of system-starter curly braces


From: Kieren MacMillan
Subject: Re: Setting the width of system-starter curly braces
Date: Sun, 18 Mar 2012 20:09:01 -0400

Hi Siska,

> thank you indeed for the reply. Unfortunately I can't get this code to work

Here's a snippet, using David's lovely mod — hope it helps.
Kieren.
_________________________

\version "2.15.32"

theMusic = \relative c' { \repeat "unfold" 16 c4 }

\new GrandStaff <<
   \set GrandStaff.instrumentName = #"Corni"
   \set GrandStaff.shortInstrumentName = #"Cor."
   \new Staff {
     \set Staff.instrumentName = #"I"
     \set Staff.shortInstrumentName = #"I"
     \theMusic
   }
   \new Staff {
     \set Staff.instrumentName = #"II"
     \set Staff.shortInstrumentName = #"II"
     \theMusic
   }
   \new Staff {
     \set Staff.instrumentName = #"III"
     \set Staff.shortInstrumentName = #"III"
     \theMusic
   }
   \new Staff {
     \set Staff.instrumentName = #"IV"
     \set Staff.shortInstrumentName = #"IV"
     \theMusic
   }
>>

\layout {
  \context {
    \GrandStaff
    \override SystemStartBrace #'stencil = #(lambda (grob)
      (ly:stencil-scale (ly:system-start-delimiter::print grob) 0.75 1))
  }
}



reply via email to

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