斜体环境中的反斜体

斜体环境中的反斜体

我使用theorem带有样式的环境plain。到目前为止,一切看起来都很好,除了项目索引是斜体。示例代码是

\begin{proposition}
    Some properties of the cdf $F$ are:
    \begin{enumerate}
        \item[\textbf{(i)}] $F(b)$ is a nondecreasing function of $b$, 
        \item[\textbf{(ii)}] $\lim_{b \to \infty} F(b) = F(\infty) = 1$,
        \item[\textbf{(iii)}] $\lim_{b \to \infty} F(b) = F(-\infty) = 0$. 
    \end{enumerate}
\end{proposition}

其中proposition

\usepackage{amsthm}
\theoremstyle{plain}
\newtheorem{proposition}{Proposition}[section]

输出是

在此处输入图片描述

有什么方法可以使索引(i) (ii)变为(iii)粗体但不变为斜体?我曾尝试放入\textbf{i}\text{}但是没有作用。

答案1

一个好的想法是使用enumitem并定义一个“定理枚举”的特殊环境,以确保整个文档的一致性。

documentclass{article}
\usepackage{amsthm}
\usepackage{enumitem}

\newenvironment{thmenum}
 {\begin{enumerate}[label=\upshape\bfseries(\roman*)]}
 {\end{enumerate}}

\newtheorem{proposition}{Proposition}

\begin{document}

\begin{proposition}
Some properties of the cdf $F$ are:
\begin{thmenum}
  \item $F(b)$ is a nondecreasing function of $b$,
  \item $\lim_{b \to \infty} F(b) = F(\infty) = 1$,
  \item $\lim_{b \to \infty} F(b) = F(-\infty) = 0$.
\end{thmenum}
\end{proposition}

\end{document}

在此处输入图片描述

这样做可以避免在定理语句中的枚举中使用显式字体规范,并且您只需对 的定义采取行动即可更改格式。例如,thmenum我建议删除,但您可以尝试这两种方法,然后再决定。\bfseries

相关内容