Hi,

using something like

\version "2.16.0"
\notes = \relative c'' {a-. b-3 c-4 d\f}

\score {
\new Voice \with {
  \remove "Fingering_engraver"
  \remove "New_fingering_engraver"
} \notes
\layout {}
}

you can remove the fingerings from one Voice. To do so for all the
entire score you can use instead the following score block:

\score {
\notes
\layout {
  \context {
    \Voice
    \remove "Fingering_engraver"
    \remove "New_fingering_engraver"
  }
}
}

Felix

_______________________________________________
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user

Reply via email to