如何在处理空白问题的同时,正确使用 Tex 中定理环境中的对齐环境?

如何在处理空白问题的同时,正确使用 Tex 中定理环境中的对齐环境?

我目前正在尝试使用对齐环境在使用定理环境中显示方程式lemma。我的代码如下:

\documentclass[10pt]{article}
\usepackage[utf8]{inputenc}
\usepackage[english]{babel}
\usepackage{amsmath,amsfonts,fullpage,graphicx,setspace,tikz,amsthm,centernot,bbm,graphicx,caption,titling,relsize}

\newtheorem{lemma}{Lemma}

\begin{document}

\begin{lemma}[A Lemma Goes Here]
We claim the following in our lemma that the three mathematical forms are equal:
\begin{align*}
f(x) & = x^2 \\
&= x\cdot x \\
\end{align*}
Proof. \text{In Appendix}
\end{lemma}
\end{document}

在此处输入图片描述

这里的问题是底部的证明/注释区域之间存在太多空白。我无法使用\vspace或类似的东西来控制这个空白。有没有更好的方法?

答案1

不要\\在环境末尾使用“结束” align。此外,请proof使用amsthm

在此处输入图片描述

\documentclass{article}

\usepackage{amsmath,amsthm}

\newtheorem{lemma}{Lemma}

\begin{document}

\begin{lemma}[A Lemma Goes Here]
We claim the following in our lemma that the three mathematical forms are equal:
\begin{align*}
  f(x) &= x^2 \\
       &= x \cdot x
\end{align*}
\end{lemma}

\begin{proof}
In Appendix.
\end{proof}

\end{document}

相关内容