Hi,
Using the code you sent, I pasted it on Lilypond and it did not show
me IM Fell….
I just need it for the title of the piece. So I don’t necessarily need
it for the whole piece.
It could be that your version of the IM FELL family is named
differently. I got mine from Google's OFL collection [2].
[2]: https://github.com/google/fonts/tree/main/ofl
The original question asked for "IM FELL English PRO", which is the name
of the OTF variant downloadable from the author's page:
https://iginomarini.com/fell/
https://iginomarini.com/fell/the-revival-fonts/
https://iginomarini.com/fell/wp-content/uploads/IMFellTypesClass.zip
For this version, you can do in LilyPond:
%%
\version "2.22.0"
\markup \left-column {
\override #'(font-name . "IM FELL English PRO")
"IM FELL English PRO"
}
\markup \left-column {
\override #'(font-name . "IM FELL English PRO italic")
"IM FELL English PRO italic"
}
%%
Lukas