Br. Samuel Springuel wrote
> I tried:
>
> \version "2.18.2"
> \language "english"
>
> \new Staff \with {
> \remove "Time_signature_engraver"
> }
> \relative c' {
> \key f \major
> \set Score.timing = ##f
> \remove "Stem_engraver"
> \relative c'' { c bflat a g--( a bflat g ) g-- \bar "||"
> }
> }
>
> but that didn't work. I guess I don't understand how to "remove the
> stem engraver from the voice context.
You have to explicitly declare the voice context as shown below. It results
in some "no stem for note column" errors, so you're better off with the
\omit approach.
-Paul
\version "2.18.2"
\language "english"
\new Staff \with {
\remove "Time_signature_engraver"
}
\new Voice \with {
\remove "Stem_engraver"
}
\relative c' {
\key f \major
\set Score.timing = ##f
\relative c'' {
c bflat a g--( a bflat g ) g-- \bar "||"
}
}
--
View this message in context:
http://lilypond.1069038.n5.nabble.com/Removing-Stems-tp163043p163052.html
Sent from the User mailing list archive at Nabble.com.
_______________________________________________
lilypond-user mailing list
[email protected]
https://lists.gnu.org/mailman/listinfo/lilypond-user