有没有办法改变单个单词的字体?
我在 LaTex 中使用文章文档类,并且我想将拉丁词以斜体显示,但与文档其余部分使用的斜体类型不同。
答案1
遵循原则一致的字体\textsf{\itshape ...}
,可以使用如下“可混合”字体宏:
\documentclass{article}
\usepackage{lmodern}% http://ctan.org/pkg/lm
\newcommand{\latinword}[1]{\textsf{\itshape #1}}%
\begin{document}
Here is a word in \textit{italics} and a Latin \latinword{verbum}.
\end{document}