带有多语包的 Times 字体

带有多语包的 Times 字体

如何配置 Times 字体以与 XeLaTeX 的polyglossia包一起使用?我尝试将其配置为与 PdfLaTeX 相同,但这种方法不起作用:大胆的斜体 显示为正常字体。

最小工作示例:

\documentclass{article}
\usepackage{polyglossia}

\renewcommand{\sfdefault}{uhv}
\renewcommand{\rmdefault}{utm}
\renewcommand{\ttdefault}{ucr}

\begin{document}
    \textbf{Bold text} \textit{Italic text} Normal text
\end{document}

答案1

对我来说,解决方案是:

1)您必须导入polyglossia 第一的 2)接下来,导入textenc 3)最后,你可以导入times

例如:

\usepackage{polyglossia}  % For typesetting various languages in UTF-8 including Bengali
\setmainlanguage{english}

\usepackage[T1]{fontenc}
\usepackage{times,latexsym}

相关内容