On 28.01.2016 11:02, Bernhard Kleine wrote:
I have the following code and want to add this snippet from the
Documentation:

\new Voice \with {
   \remove "Note_heads_engraver"
   \consists "Completion_heads_engraver"
   \remove "Rest_engraver"
   \consists "Completion_rest_engraver"

Adding it to \new Voice = "soprano" failed and adding to ChoirStaff
failed, too.

It’s probably easiest to use a \layout block, either outside or inside of \score {}:

\layout {
  \context {
    \Voice
    \remove "Note_heads_engraver"
    \consists "Completion_heads_engraver"
    \remove "Rest_engraver"
    \consists "Completion_rest_engraver"
  }
}

HTH, Simon

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

Reply via email to