脚注中的 fbb 包行距错误

脚注中的 fbb 包行距错误

以下示例导致文件的行距不正确。包含 Ä 和 Ö 的行的间距比脚注中的所有其他行的间距略大。

其他字体似乎没有这个问题(只需注释掉 fbb 的行即可看到差异)。 是否有机会在不触碰字体源的情况下更正间距,也许可以使用\DeclareFontShape

\documentclass{book}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{fbb}
\usepackage{blindtext}

\begin{document}
This is a test\footnote{\blindtext[2] To show that some characters may 
cause trouble with line-spacing as there are the German Umlauts Ä and Ö.
What is wrong with them? \blindtext}
\end{document}

相关内容