方程式编号与我的方程式太接近

方程式编号与我的方程式太接近

我的方程式编号被放置在方程式的正下方,它们太近了,几乎要碰到一起了,看起来很糟糕。有什么办法可以让它稍微往下移动一点吗?这是一张图片。

问题

我的代码

\documentclass{report}

\usepackage{amsmath}

\begin{document}

\chapter{A chapter}
\section{A section}
\subsection{A subsection}

The elementary solution is

\begin{equation}
f(\cosh(\rho_{H}(z,w))=k(z,w)=%
\frac{%
e^{-t/4}\sqrt{2}}{(4\pi{}t)^{3/2}}\int_{\rho_{H}(z,w)}^{\infty}{\frac{be^{-b^{-2}/4t}db}{%
\sqrt{\cosh(b)-\cosh(\rho_{H}(z,w))}}}.
\end{equation}

Further text.

\end{document}

答案1

输出

请始终发布完整的文档而不仅仅是片段,因为设置取决于所使用的类和方程式。

您可以添加规则来强制降低数字,或者最好将方程式设置在多行上。正如@egreg 指出的那样,如果您使用的是 AMS 环境(但显然不是equation),您可以使用它\raisetag来降低数字。

\documentclass{article}

\usepackage{amsmath}

\begin{document}

\setcounter{equation}{50}

\begin{equation}
f(\cosh(\rho_{H}(z,w))=k(z,w)=
\frac{e^{-t/4}\sqrt{2}}{(4\pi{}t)^{3/2}}\int_{\rho_{H}(z,w)}^{\infty}{\frac{be^{-b^{-2}/4t}db}{\sqrt{\cosh(b)-\cosh(\rho_{H}(z,w))}}}.
\end{equation}

\begin{equation}
f(\cosh(\rho_{H}(z,w))=k(z,w)=
\frac{e^{-t/4}\sqrt{2}}{(4\pi{}t)^{3/2}}\int_{\rho_{H}(z,w)}^{\infty}{\frac{be^{-b^{-2}/4t}db}{\sqrt{\cosh(b)-\cosh(\rho_{H}(z,w))}}}.\rule[-1.5em]{0pt}{0pt}
\end{equation}

\begin{gather}
f(\cosh(\rho_{H}(z,w))=k(z,w)=
\frac{e^{-t/4}\sqrt{2}}{(4\pi{}t)^{3/2}}\int_{\rho_{H}(z,w)}^{\infty}{\frac{be^{-b^{-2}/4t}db}{\sqrt{\cosh(b)-\cosh(\rho_{H}(z,w))}}}.
\raisetag{-.5em}
\end{gather}

\begin{multline}
f(\cosh(\rho_{H}(z,w))=k(z,w)=\\
\frac{e^{-t/4}\sqrt{2}}{(4\pi{}t)^{3/2}}\int_{\rho_{H}(z,w)}^{\infty}{\frac{be^{-b^{-2}/4t}db}{\sqrt{\cosh(b)-\cosh(\rho_{H}(z,w))}}}.
\end{multline}

\end{document}

相关内容