Hi,

 in the following example, an extra staff is created on the fly at two
non-adjacent times. Unfortunately the extra staffs are at different
vertical positions as they are considered different by lilypond. Is it
possible to reference the first extra staff by the second? I'm aware
that I could use stopStaff and startStaff but unfortunately the parts
are defined in different files and it would make the handling very
awkward.

--
Orm

\version "2.19.5"

music={\relative c' {c4 d e f }}


\score {
  <<
    \new Staff = "violineeins"
    {
      <<
        \music \\
        \new Staff="newstaff" \with  { alignBelowContext = "violineeins" }
        { \music }
        >>
    R1 R1
      <<
        \music \\
        \new Staff="newstaff" \with  { alignBelowContext = "violineeins" }
        { \music }
        >>
    }
  >>
  
\layout {}
%\midi {}
}

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

Reply via email to