lualatex/texlive2024에서 이름에 공백이 있는 글꼴로 textls를 사용할 때 오류가 발생합니다.

lualatex/texlive2024에서 이름에 공백이 있는 글꼴로 textls를 사용할 때 오류가 발생합니다.

지금까지는 lualatex에서 글꼴의 전체 이름을 사용하는 것이 모든 경우에 잘 작동했습니다. 하지만 TeXLive 2024 업데이트 이후로 \textls[]{}.

다음 코드에서는 이 오류가 발생합니다.

luaotfload | db : Reload initiated (formats: otf,ttf,ttc); reason: Font "kernfactor=-0.005;Libertinus Serif at 10.95pt" not found....xmf-dist/tex/lu
atex/luaotfload/fontloader-basics-gen.lua:156: bad argument #2 to 'find_file' (
invalid option '95pt').
<to be read again>
edef
l.14 \textls[-5]{\blindtext}
\documentclass[11pt]{article}

\usepackage{fontspec}
\usepackage{microtype}

\setmainfont{Libertinus Serif}

\usepackage{blindtext}

\begin{document}

\textls[-5]{\blindtext}

\end{document}

\setmainfont{LibertinusSerif}예상대로 작동 합니다 . 를 사용하지 않으면 \textls[]{}두 구문 모두 제대로 작동합니다.

하지만 문제를 어디에 보고해야 할지 잘 모르겠습니다. 글꼴 사양? 마이크로타입? 루오프트로드?

관련 정보