分母中具有标准大小的积分符号

分母中具有标准大小的积分符号

如何以标准尺寸显示分母中的积分符号。请参见下面的屏幕截图。

在此处输入图片描述

答案1

您可能\wfrac在回答另一个问题时使用了“as defined”。但是……

\documentclass{article}
\usepackage{amsmath}

\newcommand{\wfrac}[3][3pt]{%
  \frac{\wfracterm{depth}{\dp}{#1}{#2}}{\wfracterm{height}{\ht}{#1}{#3}}%
}
\newcommand{\wfracterm}[4]{%
  \sbox0{$\displaystyle#4$}%
  \vrule width 0pt #1 \dimexpr #20+#3\relax
  \usebox{0}%
}

\begin{document}

\begin{equation}
\exp\Bigl(-\!\int p(t)\,dt\Bigr)\int q(t)\,dt \tag{Good}
\end{equation}

\begin{equation}
\frac{1}{\exp\bigl(\int p(t)\,dt\bigr)}\int q(t)\,dt \tag{Not so bad}
\end{equation}

\begin{equation}
\frac{\int q(t)\,dt}{\exp\bigl(\int p(t)\,dt\bigr)} \tag{Bad}
\end{equation}

\begin{equation}
\wfrac{\int q(t)\,dt}{\exp\int p(t)\,dt} \tag{Ugly}
\end{equation}

\end{document}

在此处输入图片描述

可以肯定的是,您展示的代码会产生很多错误,因为内部align或任何其他数学对齐环境中都不允许有空行。

使用的标签是任意的字符串,绝不表示判断。;-)

答案2

现在看起来非常干净\displaystyle。请注意,我还使用了\cfrac

\documentclass{article}

\usepackage{amsmath}

\begin{document}

   \begin{align}
    
    = \cfrac{\displaystyle \int q(t) \,dt} {\displaystyle \exp{\int p(t) \,dt}}
    
   \end{align}

\end{document}

输出:

在此处输入图片描述

相关内容