Il giorno ven 14 ott 2022 alle 12:38:55 +0200, Thomas Morley
<thomasmorle...@gmail.com> ha scritto:
Thanks for the files.
The culprit seems to be:
tuningOpenBb =
\markup {
\with-dimensions #'(0 . 0.8) #'(0 . 1.0)
\postscript "/Arial-Bold findfont
1.3 scalefont
setfont -0.5 3.6 moveto
(D) show -0.5 2.0 moveto
(C) show -0.5 0.6 moveto
(F) show -0.5 -0.8 moveto
(D) show -0.5 -2.2 moveto
(Bb) show -0.5 -3.6 moveto
(F) show
stroke"
}
It is no longer possible to specify fonts like above.
https://lists.gnu.org/archive/html/lilypond-devel/2022-04/msg00018.html
I suggest to do instead:
tuningOpenBb =
\markup {
\fontsize #-4
\override #'(baseline-skip . 1.5)
\column \override #'(font-name . "Arial Bold") {
D C F D Bb F
}
}
Many thanks Harm!
Now I can compile all my scores even with Ghostscript.
I also had to replace # with ♯ (utf8) to specify sharp notes in a
tuning, otherwise I got a Guile error. utf8 character is even prettier.