Hi,
I am trying to, for instance, show the accidental on the second a-sharp below.
\parallelMusic #'(voiceA voiceB) {
\cadenzaOn
ais''2. | b''2. | \bar "|"
ais''2. | d''2. | \bar "|"
\cadenzaOff
}
\score {
<<
\new Staff \new Voice \voiceA
\new Staff \new Voice \voiceB
>>
}
Where should I pu
allelMusic #'(voiceA voiceB) {
\cadenzaOn
#(set-accidental-style 'modern)
ais''2 a''4 | b''2. | \bar "|"
ais''2. | d''2. | \bar "|"
\cadenzaOff
}
\score {
<<
\new Staff \new Voice \voiceA
\new Staff \new Voice \voiceB
Hi list,
Is there a scheme snippet that will reprint a sharp as the enharmonic
flat if it appears after a flat, reprint a flat as the enharmonic
sharp if it appears after a sharp, and leave a note alone if it
appears after a natural? Better yet would be if it always left fis
and bes alone.
Thank