This is completely logical, since a Voice context only can
live within a Staff context. Therefore, LilyPond creates
a new Staff context to host your Voice context.
What you probably want to do is something like

\version "2.10.25"
\score {
<<
\new Staff \new Voice \with {
 \remove "Note_heads_engraver"
 \consists "Completion_heads_engraver"
}
{ c''1 }
\new Staff { e'1 }


}


If you want the change to apply to all voices in the full score,
please read section "Changing context default settings" in
the manual.

  /Mats


andy wrote:

I'm not top posting.

The example below creates 3 staves: an empty one on top and 2 staves with the full notes.

\version "2.10.25"
\score {
\new Voice \with {
 \remove "Note_heads_engraver"
 \consists "Completion_heads_engraver"
}
<<
\new Staff { c''1 }
\new Staff { e'1  }
}

If I omit the 'new Voice' then I get the requested 2 staves.

\version "2.10.25"
\score {
<<
\new Staff { c''1 }
\new Staff { e'1  }
}

Is this a bug or a feature of 'new Voice' ?

rgds
andy



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


--
=============================================
        Mats Bengtsson
        Signal Processing
        Signals, Sensors and Systems
        Royal Institute of Technology
        SE-100 44  STOCKHOLM
        Sweden
        Phone: (+46) 8 790 8463                         
       Fax:   (+46) 8 790 7260
        Email: [EMAIL PROTECTED]
        WWW: http://www.s3.kth.se/~mabe
=============================================



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

Reply via email to