Shouldn't the template for Piano with melody look like this:

\score { << \new Voice = "mel" \with { \remove "Axis_group_engraver" \consists "Hara_kiri_engraver" } \autoBeamOff \melody \new Lyrics \lyricsto mel \text \new PianoStaff << \new Staff = "upper" \upper \new Staff = "lower" \lower >> >> \layout { } \midi { \tempo 4=60 }Instead of this:
    \score {
       <<
          \new Voice = "mel" {
              \autoBeamOff
              \melody
          }
          \new Lyrics \lyricsto mel \text

          \new PianoStaff <<
             \new Staff = "upper" \upper
             \new Staff = "lower" \lower
          >>
       >>
       \layout {
          \context { \RemoveEmptyStaffContext }
       }
       \midi { \tempo 4=60 }
Usually the intro and other points in the song with the accompaniment by itself does not have the empty vocal line above it, but neither the upper nor the lower staff of the piano part cuts out without them both cutting out. So allowing every staff to cut out independently of the others is not what is wanted.

Maybe this would work?

          \new PianoStaff
             \with {
                \remove "Axis_group_engraver"
                \consists "Hara_kiri_engraver"
             } <<
             \new Staff = "upper" \upper
             \new Staff = "lower" \lower
          >>

Stephen


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

Reply via email to