如何对齐备注

如何对齐备注

我在打印乳胶代码时遇到了这个问题: 在此处输入图片描述

我想将“备注”与定义对齐。我使用了 \theoremstyle 和 \newtheorem 但它打印出来就像图片一样。

这是我的初始代码: 在此处输入图片描述 在此处输入图片描述

谢谢。

答案1

amsthm包提供了三种预定义的定理样式:theoremdefinitionremark。该指令\theoremstyle{rem}应该会抛出一条警告消息——你注意到了吗?

\theoremstyle{remark}如果您想要remark称为 的环境的样式,则使用,或者对和环境都rem使用定理样式。definitiondefnrem

在此处输入图片描述

\documentclass[11pt,openany]{book}
\usepackage{amsmath,amssymb,amsthm}

\newtheorem{teo}{Theorem}[section]

\theoremstyle{definition} % optional
\newtheorem{defn}[teo]{Definition}

\theoremstyle{remark}
\newtheorem{rem}[teo]{Remark}


\begin{document}
\setcounter{chapter}{2} % just for this example
\setcounter{section}{1}

\begin{defn}[$\sigma$-algebras] 
Let $\Omega$ be a non-empty set. \dots
\end{defn}

\begin{rem}
If $\{A_i\}_{i=1}^{\infty}\subset\mathcal{F}$, \dots
\end{rem}

\begin{defn}[Measures and Measurability] 
Let $\Omega\neq\emptyset$ and \dots
\end{defn}

\end{document}

相关内容