定理中的常规非斜体字体

定理中的常规非斜体字体

如果我想在定理环境中使用常规非斜体字体字符,该怎么办?和 似乎都text{}不起作用textit{},类似的问题都询问更改整个环境的样式,而不仅仅是几个字符的样式。

\newtheorem{theorem}{Theorem}[section]
\newtheorem{corollary}{Corollary}[theorem]
\newtheorem{lemma}[theorem]{Lemma}

答案1

以下是一些选项:

在此处输入图片描述

\documentclass{article}

\newtheorem{theorem}{Theorem}[section]

\begin{document}

\section{A section}

\begin{theorem}[Some theorem]
This is a theorem.
\emph{emph} or
\textup{textup} or
{\normalfont normalfont} or
\textnormal{textnormal}
This is the end of the theorem.
\end{theorem}

\end{document}

相关内容