写数学条件环境

写数学条件环境

我想对数学条件进行编号,但我找不到任何环境。我的意思是这样的:

\begin{condition}
    a should be posotive
\end{condition}
\begin{condition}
    b should be Negative
\end{condition}

并得到以下输出:

condition 1.1: a should be positive
condition 1.2: b should be Negative

任何帮助将不胜感激。

答案1

您可以使用 LaTeX 中的命令来实现类似的效果\newtheorem。如果您想要更大的灵活性(例如,调整标签和文本的字体),请amsthm在序言中加载包。将条件视为“定理”的好处是,您可以使用\label\ref命令来引用条件。有关命令的更多信息,\newtheorem请参阅WikiBooks:LaTeX/定理

\documentclass{article}
\newtheorem{condition}{Condition}[section]
\begin{document}
\section{My conditions}
\begin{condition}\label{cond for a}
  $a$ should be positive.
\end{condition}
\begin{condition}\label{cond for b}
  $b$ should be negative.
\end{condition}
Note that condition~\ref{cond for a} implies condition~\ref{cond for b}.
\end{document}

在此处输入图片描述

相关内容