粗体 Times New Roman

粗体 Times New Roman

我在论文中使用 Times New Roman。但是粗体模式不起作用。代码如下:

\documentclass[a4paper,14pt]{extarticle}[2013/05/05]
\renewcommand{\rmdefault}{ftm}
\begin{document}
    \textbf{SOME TEXT}
\end{document}

如何使用粗体样式?

答案1

您考虑过使用 XeLaTeX 吗?

\documentclass{article}
\usepackage{fontspec}
\usepackage{polyglossia}
\setmainfont{Times New Roman}
\newfontfamily\cyrillicfont{Times New Roman}
\setmainlanguage{russian}
\begin{document}
Привет мир! \textbf{Привет мир!}

Hello World! \textbf{Hello World!}
\end{document}

在此处输入图片描述

答案2

我建议你去掉这个\renewcommand{\rmdefault}{ftm}部分并使用

\usepackage{mathptmx}

反而。

例如:

\documentclass[a4paper]{report}

\usepackage{mathptmx}
\begin{document}

Your text without bold.  \textbf{Your text in bold}
\end{document}

产生以下输出:

在此处输入图片描述

编辑

根据您的 MWE 的新信息和 Philippe Goutet 的评论,您应该能够像这样使用粗体时间字体:

\documentclass[a4paper]{report}

\usepackage[russian]{babel}
\usepackage{mathptmx}


\begin{document}

\fontencoding{T1}\selectfont
Your text without bold.  \textbf{Your text in bold}

\end{document}

答案3

我建议就把

\renewcommand{\rmdefault}{ptm}

在您的序言中。 (也就是说,只需更改ftmptm。)这使您的示例对我有用。

相关内容