我目前正在尝试使用对齐环境在使用定理环境中显示方程式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}