Thanks that worked like a charm.
On 11/17/2022 11:02 PM, Rip _Mus wrote:
\version "2.22.0"
\include "english.ly <http://english.ly>"
newHideNotes = {
\override NoteHead.transparent = ##t
\override NoteHead.no-ledgers = ##t %optional
\override Stem.transparent = ##t
}
\header { tagline = "" }
\score {
\new Staff
\with {\remove "Time_signature_engraver" }
{
\set Staff.midiInstrument = #"Acoustic Grand Piano"
\key c \major \time 5/1 \clef bass
\newHideNotes
f1 g a bf c' \bar "||"}
\layout {
\context {
\Score proportionalNotationDuration = #(ly:make-moment 1/2)
}
}
\midi { \tempo 1 = 72}
}