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: Werner LEMBERG
Subject: Re: weird error engraving two files with 2.23.14
Date: Mon, 17 Oct 2022 20:45:01 +0000 (UTC)

>  \column \override #'(font-name . "Arial Bold") {
>    D A F♯ D A D
>  }

Using `font-name` is 'absolute', that is, it overrides any LilyPond
font switching mechanism.  This means that `\number` doesn't work.

There are two solutions: Either set up a font tree so that you can use
standard commands like `\bold` (and `\number`), or switch manually to
the `Emmentaler` font.  An example for the latter is

```
 \column \override #'(font-name . "Arial Bold")
 {
   D A \concat { F
\override #'(font-name . "Emmentaler-16") \small
                   ♯ } D A D
 }
```


    Werner

PNG image


reply via email to

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