lilypond-user
[Top][All Lists]
Advanced

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

Re: Orchestral group


From: Pierre Perol-Schneider
Subject: Re: Orchestral group
Date: Wed, 6 Mar 2013 18:08:47 +0100

2013/3/6 Mario Moles <address@hidden>

Hello! I can not find the documentation to do this: orchestral indication!
Where can I find it? Or does anyone know how?
thanks


Hello Mario,
Here's what I can do :

 %\version "2.16.2" ?

music = { 
\time 3/4 
\key c \minor 
s2. 
}

\paper { 
indent = 40
}

\score { 
<<
\new ChoirStaff  <<
\set ChoirStaff.systemStartDelimiter = #'SystemStartSquare
\set ChoirStaff.instrumentName = \markup { { \rotate #90 "Orchestra I" } { "                          " } }
\new StaffGroup <<
\override StaffGroup.SystemStartBracket #'collapse-height = #1
\override Score.SystemStartBar #'collapse-height = #1
\new Staff = "Oboe" {
\set Staff.systemStartDelimiter = #'SystemStartBrace
\set Staff.instrumentName = #"Oboe"
\music
}
>>
\new StaffGroup <<
\new GrandStaff <<
\new Staff = "vnI" {
\set Staff.instrumentName = #"Violino I"
\music
}
   
\new Staff = "vnII" {
\set Staff.instrumentName = #"Violino II"
\music
}
>>
\new Staff = "va" {
\set Staff.instrumentName = #"Viola"
\clef "alto"
\music
}
>>
>>
\new ChoirStaff <<
\new Staff = "Sop" {
\set Staff.instrumentName = #"Soprano"
\music
}
   
\new Staff = "Unknown" {
\music
}
>>
>>
\layout { }
}

Notes : 
1) The orchestral bracket, as shown on your image, does not exist in the Lily fonts yet. So I've put a square one.
2) I don't know how too translate this bracket close to the name Orchestra I
3) a solution would be to replace this name + bracket with an eps file.

reply via email to

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