lilypond-user
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: "Automatische Aufteilung von Noten"


From: Simon Albrecht
Subject: Re: "Automatische Aufteilung von Noten"
Date: Thu, 28 Jan 2016 11:47:41 +0100
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Thunderbird/38.5.1

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



reply via email to

[Prev in Thread] Current Thread [Next in Thread]