textbf 不适用于 txfonts 包

textbf 不适用于 txfonts 包

如果我编译它,它将不起作用——文本不会变为粗体。

\documentclass[9pt, a4paper]{extarticle}
\usepackage[utf8]{inputenc}
\usepackage[IL2]{fontenc}
\usepackage{txfonts}
\begin{document}
\textbf{Something}
\end{document}

如果我删除包使用,它仍然可以工作,但我确实需要它。我该怎么办?

答案1

日志文件告诉你

LaTeX Font Warning: Font shape `IL2/txr/m/n' undefined
(Font)              using `IL2/cmr/m/n' instead on input line 5.

LaTeX Font Warning: Font shape `IL2/txr/bx/n' undefined
(Font)              using `IL2/txr/m/n' instead on input line 6.

这意味着txfonts不支持 IL2 编码(只有少数字体支持),而是使用标准 Computer Modern 字体。

相关内容