Hi Tom,

The only problem I am having is combining the new \context with my existing one:
        \layout {
                \context {
%                       \Score
%                       \remove "Bar_number_engraver"
                        \RemoveEmptyStaffContext
                        \override VerticalAxisGroup #'remove-first = ##t
                }
        }

If I remove the comments it gives me an error.

Don't [literally] combine them — use them simultaneously, i.e.,

\layout {
  \context {
    \RemoveEmptyStaffContext
  }
  \context {
    \Score
    \remove "Bar_number_engraver"
    \override VerticalAxisGroup #'remove-first = ##t
  }
}

Hope this helps!
Kieren.

_______________________________________________
lilypond-user mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/lilypond-user

Reply via email to