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: Federico Bruni
Subject: Re: weird error engraving two files with 2.23.14
Date: Wed, 26 Oct 2022 07:09:07 +0200



Il giorno lun 17 ott 2022 alle 20:45:01 +0000, Werner LEMBERG <wl@gnu.org> ha scritto:
  \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
 }
```


This is beautiful, thank you!






reply via email to

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