Hello,

am I doing anything wrong here?
%%%%%%%%%%%%%
music = {
  1
}

\score {
  \displayMusic {
    \new Staff <<
      \new NullVoice \music
      \new Voice \music
    >>
    \break
    \new GrandStaff <<
      \new Staff <<
        \new NullVoice \music
        \new Voice \music
      >>
      \new Voice \music
    >>
  }
}
%%%%%%%%%%%

The second NullVoice (inside the GrandStaff), unlike the first, is not included in the same staff as the Voice, but instead gets a staff of its own. Bug?
TIA, Simon
\version "2.19.25"
#(set-global-staff-size 16)
\paper { #(set-paper-size "a7") indent = 0 page-count = 1 }
#(ly:set-option 'point-and-click #f)
\header { tagline = ##f }

music = {
  1
}

\score {
  \displayMusic {
    \new Staff <<
      \new NullVoice \music
      \new Voice \music
    >>
    \break
    \new GrandStaff <<
      \new Staff <<
        \new NullVoice \music
        \new Voice \music
      >>
      \new Voice \music
    >>
  }
}
_______________________________________________
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user

Reply via email to