对于逐项列举/列举/描述类型的问题,应该使用什么

对于逐项列举/列举/描述类型的问题,应该使用什么

我有一个引理,我想在其中表达这样的想法:

假设 f 是一个满足

(A)f=0 且 f 是连续的,或

(B) f=1 且 f 定义明确。

那么 f 就很好。

我的问题是,对于 (A) 和 (B) 这两个选项,我应该使用什么环境?我应该使用enumerateitemize还是description,或者其他什么?我稍后可能会说“如果 f 满足情况 (A),那么...”

答案1

这里使用的自然结构是枚举列表。使用enumitem包中您可以轻松更改计数器表示以获得所需的格式:

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

\newtheorem{lem}{Lemma}

\begin{document}

\begin{lem}
Let $f$ be a function which satisfies either
\begin{enumerate}[label=\textup{(\Alph*)}]
  \item\label{ite:casea} $f=0$ and $f$ is continuous, or
  \item\label{ite:caseb} $f=1$ and $f$ is well-defined.
\end{enumerate}
Then $f$ is good.
\end{lem}

\begin{proof}
If $f$ satisfies the conditions of Case~\ref{ite:casea} then\ldots\ On the other hand, if $f$ satisfies the conditions of Case~\ref{ite:caseb} then\ldots
\end{proof}

\end{document}

在此处输入图片描述

相关内容