2010/7/29 clarinetcola <clarinet.c...@gmail.com>:

> Awesome! I didn't think of starting and stopping simply because the
> existing music were there in two staves already and I didn't want to
> mess up the format.  I've just got some copy and pasting to do now.

Hi!

Why not "simply" use nested music expressions?

Like this :


% \version "2.13.28"

up = \relative c' {
  c4 d e c c4 d e c
}

middle = \relative c' {
  c4 d e c c4 d e c
}

down = \relative c' {
  c4 d e c c4 d e c
}

\score {
  \new StaffGroup <<
    {
      <<
        \new Staff {\up}
        \new Staff = "down" {\down }
      >>
      \new Staff \with {
        alignAboveContext = #"down"
      }
      {
        \once \override Staff.Clef #'stencil = ##f
        \once \override Staff.TimeSignature #'stencil = ##f
        \middle
      }
    }
  >>
}


Cheers,
Xavier

--
Xavier Scheuer <x.sche...@gmail.com>

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

Reply via email to