As fontes no texlive 2022 parecem não ter sido encontradas (versão no verso / mac os / mac os home brew)

As fontes no texlive 2022 parecem não ter sido encontradas (versão no verso / mac os / mac os home brew)

Tenho alguns formulários personalizados de artigos de látex que usam a fonte LobsterTwo em determinados lugares. Percebi que para esta fonte específica ela não funciona, nem no meu Mac, nem no verso. (Reinstalei o texlive 2022 do homebrew, mas mostra o mesmo resultado.) Ao compilar um documento com pdflatex ele não me dá uma mensagem de erro, mas sim avisos e substitui uma fonte diferente.

\documentclass[10pt,a5paper]{scrbook}

\usepackage[T1]{fontenc}
\usepackage[ngerman]{babel}
\newcommand*{\LobsterTwo}{\fontfamily{LobsterTwo-LF}\selectfont}

\title{\LobsterTwo{\fontsize{80}{60}\selectfont Texte}}
%\author{{\LobsterTwo Alexander Deisting} }
\author{\fontfamily{LobsterTwo-LF}\selectfont{Alexander Deisting}}

\begin{document}
\maketitle
\end{document}

e aqui os avisos:

LaTeX Font Warning: Font shape `T1/LobsterTwo-LF/bx/n' undefined
(Font)              using `T1/cmr/m/n' instead on input line 13.


LaTeX Font Warning: Font shape `T1/LobsterTwo-LF/bx/n' in size <80> not availab
le
(Font)              size <35.83> substituted on input line 13.


LaTeX Font Warning: Font shape `T1/LobsterTwo-LF/m/n' undefined
(Font)              using `T1/cmr/m/n' instead on input line 13.

[1{/usr/local/Cellar/texlive/20220321_3/share/texmf-dist/fonts/map/pdftex/updma
p/pdftex.map}] (./fonttest.aux)

LaTeX Font Warning: Size substitutions with differences
(Font)              up to 44.17pt have occurred.


LaTeX Font Warning: Some font shapes were not available, defaults substituted.

Verifiquei se a fonte pode estar faltando em geral na minha máquina, mas a encontrei nos caminhos esperados (com base na minha instalação anterior do texlive 2020). Por exemplo, /usr/local/Cellar/texlive/20220321_3/share/texmf-dist/fonts/map/dvips/lobster2/existe. Infelizmente, algumas rodadas de pesquisa no Google não ajudaram, daí a minha pergunta aqui. (No verso tem o mesmo problema, atualmente não tenho uma máquina com uma versão mais antiga para testar novamente, então você tem que acreditar na minha palavra de que funcionou antes;)) Alguma idéia?

Responder1

O nome da família do látex é Lbstr-LF

kpsewhich T1Lbstr-LF.fd
/usr/local/texlive/2022/texmf-dist/tex/latex/lobster2/T1Lbstr-LF.fd

insira a descrição da imagem aqui

\documentclass[10pt,a5paper]{scrbook}

\usepackage[T1]{fontenc}
\usepackage[ngerman]{babel}
\newcommand*{\LobsterTwo}{\fontfamily{Lbstr-LF}\selectfont}

\title{\LobsterTwo{\fontsize{80}{60}\selectfont Texte}}
%\author{{\LobsterTwo Alexander Deisting} }
\author{\fontfamily{Lbstr-LF}\selectfont{Alexander Deisting}}

\begin{document}
\maketitle
\end{document}

informação relacionada