lilypond-user
[Top][All Lists]
Advanced

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

Problem with Staff Grouping


From: Dave Higgins
Subject: Problem with Staff Grouping
Date: Fri, 18 Apr 2014 10:31:06 -0600
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:24.0) Gecko/20100101 Thunderbird/24.4.0

I'm transcribing a piece that has multiple parts and in those multiple
parts, I have multiple staves.

After compiling, the staff layout becomes:
part1:staff1
part2:staff1
part1:staff2
part2:staff2

Obviously for the score, I'd like:
part1:staff1
part1:staff2
part2:staff1
part2:staff2

I'm sure I just have something not correct.

violinOne = \relative c' {
    << { b2 b } \new Staff { g g } >> }
---
violinTwo = \relative c' {
    << { e2 e } \new Staff { e e } >> }
---
\include "violin1.ly"
\include "violin2.ly"
\score
{ << \new StaffGroup = "StaffGroup_strings"
<< \new GrandStaff = "violins"
<<
\new Staff = "violini" { \set Staff.instrumentName = "Violin I."
\violinOne }
\new Staff = "violinii" { \set Staff.instrumentName = "Violin II."
\violinTwo } >> >> >> }
---
\include "violin1.ly"
\score
{
<< \new GrandStaff = "violins"
<< \new Staff = "violini" { \set Staff.instrumentName = "Violin I."
\violinOne }
>> >>
}
---
\include "violin2.ly"
\score
{
<< \new GrandStaff = "violins"
<< \new Staff = "violinii" { \set Staff.instrumentName = "Violin II."
\violinTwo } >> >>
}




reply via email to

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