答案1
这称为 和ligature
,是良好排版的标志。TeX 的标准连字是fi, fl,ffi,ffl
,但也有fj
和旧式连字st
和ct
,还有一些其他连字,具体取决于字体。使用fontspec
和最容易访问它们xelatex
。下面是一个例子,带有Latin Modern
、erewhon
( 的扩展Adobe Utopia
)和Sabon Next LT Pro
(后者是商业字体,前两个在 TeX Live 和 MiKTeX 中):
\documentclass{article}
\usepackage{fontspec}
\newfontfamily\erewhon{erewhon}[Ligatures=Rare]
\newfontfamily\otherfont{Sabon Next LT Pro}[Ligatures=Rare]
\begin{document}
fluid - Fluid - fjord - baffled - suffix
fish - Fish - special act - fb - fk
\bigskip
\erewhon
fluid - Fluid - fjord - baffled - suffix
fish - Fish - special act - fb - fk
\bigskip
\otherfont
fluid - Fluid - fjord - baffled - suffix
fish - Fish - special act - fb - fk
\vskip1 cm
\end{document}