如何应用“Times New Roman”字体的句子

如何应用“Times New Roman”字体的句子

今天我设计一个论文封面,有些英文单词需要用“Times New Roman”字体,有些英文句子需要用其他字体。

我的试用

\documentclass[a4paper,UTF8,winfont]{ctexart}
\usepackage[top=2.8cm, bottom=2.5cm, left=1cm, right=1cm]{geometry}
\usepackage{setspace}
\usepackage{amsmath}
\usepackage{times}
\usepackage{mathptmx}
\begin{document}
 \title{Simulation of a SCARA robot with PD and learning controllers}
 \section{PD controller}
\end{document}

但是,将\usepackage{times}所有英文句子都应用到“Times New Roman”字体上。在这里,我遇到了一个问题,但我不知道如何解决?有人能帮助我吗?真心感谢!

答案1

如果您愿意并且能够从 pdfLaTeX 切换到 XeLaTeX 或 LuaLaTeX,那么让 LaTeX 使用一种字体系列(例如 Times New Roman)来显示分段标题,并使用另一种字体系列(例如 Trebuchet MS)来显示所有其他文本就很简单了。下面的示例使用软件包fontspecsectsty来实现这一点,并且需要在 XeLaTeX 或 LuaLaTeX 下进行编译。

在此处输入图片描述

\documentclass{article}
\usepackage{fontspec}
\setmainfont{Trebuchet MS}
\newfontfamily\otherfont{Times New Roman}

\usepackage{sectsty}
\allsectionsfont{\otherfont}

\title{\otherfont My title}
\author{\otherfont A. U. Thor}
\date{}

\begin{document}
\maketitle
\section{Here we go}
\subsection{and on and on and on}
And here's some random text.
\end{document}

相关内容