oh sorry, I hadn't got it !

Here's my proposal. I let you solve the pb of clefs and time signature positionning at the beginning of the two voices (I don't know how to do it...). I have created 3 staves : up and down are the two staves in the middle, and middle is the signle stave. Playing with stop and startStaff allows you to do what you want. You can also play with :

\with {\override VerticalAxisGroup #'next-staff-spacing = #'((space . x) (padding . y)) }

to adjust the space between staves.

\version "2.13.17"

up = \relative c'' {
\override Staff.Clef #'stencil = ##f
\override Staff.TimeSignature #'stencil = ##f
\stopStaff s1*2 \startStaff
c4 d e c c d e c \stopStaff}

middle = \relative c'' {
c4 d e c c d e c \stopStaff s1*2 \startStaff c4 d e c c d e c}

down = \relative c'' {
\override Staff.Clef #'stencil = ##f
\override Staff.TimeSignature #'stencil = ##f
\stopStaff s1*2 \startStaff
c4 d e c c d e c \stopStaff}

\score {
\new StaffGroup <<
     \new Staff {\up}
     \new Staff {\middle}
     \new Staff {\down}
 >>
}

Hope that helps !

JMarc

clarinetcola a écrit :
yes, but that only starts a new staff under an existing staff. I would like
to start a new staff ( or reposition one of the existing staffs) to start
where the two staffs ended, positioned in between vertically.

Thanks=P
_______________________________________________
lilypond-user mailing list
lilypond-user@gnu.org
http://lists.gnu.org/mailman/listinfo/lilypond-user

Reply via email to