有没有办法让 \textit{} 表达式中的单词不变成斜体?

有没有办法让 \textit{} 表达式中的单词不变成斜体?

我希望有这样一句话:

在里面史密斯案件中,最高法院裁定……

其中,除了“Smith”之外,整个句子都用斜体表示,因为它是案件的简称。(您可以想象很多其他类似的例子,比如电影等。)

我希望能够做类似的事情:

\textit{In the \textit{Smith} case, the Supreme Court held...}

但是,上面的代码使所有内容都变成斜体。我是否可以在不使用以下代码的情况下,让 Smith 不变成斜体?

\textit{In the} Smith \textit{case, the Supreme Court held...}

我对这段代码唯一不满意的地方是,如果我决定将“Smith”放在句子的其他地方,那么编辑就会变得困难。

我感谢所有的帮助 — — 即使这种帮助只是说我想要的解决方案并不存在。

答案1

那是确切地什么\emph

\documentclass{article}

\begin{document}

\emph{In the \emph{Smith} case, the Supreme Court held\dots}

\end{document}

或者,如果您更喜欢手动控制,那么您可以使用\textup

\documentclass{article}

\begin{document}

\textit{In the \textup{Smith} case, the Supreme Court held\dots}

\end{document}

答案2

我通常使用:

    \textit{This is my text, but I want {\normalfont this} to not be in italics.}

相关内容