lilypond-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: weird error engraving two files with 2.23.14


From: Thomas Morley
Subject: Re: weird error engraving two files with 2.23.14
Date: Fri, 14 Oct 2022 12:38:55 +0200

Am Do., 13. Okt. 2022 um 14:08 Uhr schrieb Thomas Morley
<thomasmorley65@gmail.com>:
>
> Am Do., 13. Okt. 2022 um 01:09 Uhr schrieb Federico Bruni 
> <fede@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



reply via email to

[Prev in Thread] Current Thread [Next in Thread]