Discussion:
Superfluous clef
Thomas Morley
2018-10-20 15:54:39 UTC
Permalink
Hi,

with the code below a superfluous clef is printed.

\version "2.19.82"

\new Staff
<<
\new Voice { s1 s }
\new Voice { s \clef treble s }
Probably it's caused by the method how the default treble-clef is put
into Staff when initializing, I'm guessing, though.


Cheers,
Harm
Malte Meyn
2018-10-20 15:59:13 UTC
Permalink
Post by Thomas Morley
Hi,
with the code below a superfluous clef is printed.
\version "2.19.82"
\new Staff
<<
\new Voice { s1 s }
\new Voice { s \clef treble s }
You don’t even need two voices for that:

\version "2.19.82"

{ s1 \clef treble s } % try also s4 instead of s1

Loading...