Hi Kim,
> Is there is a way to construct this unique accidental *without* having to use
> Scheme?
> the Scheme code below works but curious if there is something native in
> LilyPond that could do the same thing?
This seems to work?
%%% SNIPPET BEGINS
\version "2.24.2"
\language "english"
doubleNaturalSharp = {
\override Accidental.stencil = #ly:text-interface::print
\override Accidental.text =
\markup \concat {
\musicglyph #"accidentals.natural"
\hspace #0.2 \musicglyph #"accidentals.natural"
\hspace #0.1 \musicglyph #"accidentals.sharp"
}
}
\relative c' {
<cs \single \doubleNaturalSharp as' e'>
}
%%% SNIPPET ENDS
Hope that helps!
Kieren.