Am Do., 13. Okt. 2022 um 14:08 Uhr schrieb Thomas Morley <thomasmorle...@gmail.com>: > > Am Do., 13. Okt. 2022 um 01:09 Uhr schrieb Federico Bruni > <f...@inventati.org>:
> > These two files are copyrighted and I can't share them here, but I will > > send privately to anyone interested in debugging this issue. > > Hi Federico, > > I'd offer to have a look. > > Cheers, > Harm 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 } } HTH, Harm