我的文档中有一些文本,其主要字体是 LaTeX 中的,但我想获取一些 Times New Roman 字体的文本,但只是主要文本之间的一些文本,作为本地命令(诸如 等\textit{}
)\textbf{}
,如下例所示。
我的猫皮肤是黑色的。% 以主要字体
我的第二只猫皮肤是白色的。% 我想用 Times New Roman
感谢帮助。
答案1
选项 1:LaTeX
选择 Times 字体,它看起来很像 Times New Roman。更多信息这里。
平均能量损失
\documentclass{article}
\begin{document}
My cat has black skin. % in primary font
{\fontfamily{ptm}\selectfont
My second cat has white skin.} % I would like to get in Times New Roman
\end{document}
结果
选项 2:XeLaTeX/LuaLaTeX
按照 Johannes_B 的建议选择计算机上安装的字体fontspec
。不过现在您必须使用 XeLaTeX 或 LuaLaTeX 进行编译。(感谢 clemens)
平均能量损失
\documentclass{article}
\usepackage{fontspec}
% Compile with XeLaTeX
\newfontfamily\myfont{times.ttf}
\begin{document}
My cat has black skin. % in primary font
{\myfont
My second cat has white skin.} % I would like to get in Times New Roman
\end{document}