考虑以下 MWE:
\documentclass{article}
\usepackage{amsmath}
\usepackage{amsthm}
\newcommand{\f}{\frac{a}{a}}
\begin{document}
\begin{proof}
\begin{align*}
1 &= \frac{\frac{\f}{\f}}{\frac{\f}{\f}} \qedhere
\end{align*}
\end{proof}
\end{document}
我们有一个证明,它以某个公式结尾\qedhere
。但是\qedsymbol
出现在行的中心而不是底部。它看起来是这样的:
问题:如何将 垂直对齐\qedsymbol
到行的底部(即,将 的最低下边框a
与 的下边框对齐\qedsymbol
)?
答案1
答案2
我不会这么做。最好用一句话而不是公式来结束证明。或者把墓碑留在原处。
\documentclass{article}
\usepackage{amsmath}
\usepackage{amsthm}
\newcommand{\f}{\frac{a}{a}}
\begin{document}
\begin{proof}
\begin{equation*}
\raisebox{\depth}{$\displaystyle 1 = \frac{\frac{\f}{\f}}{\frac{\f}{\f}}$} \qedhere
\end{equation*}
\end{proof}
\end{document}