分数中有大量空白

分数中有大量空白

我正在尝试用 LaTeX 创建一个方程式,但是,似乎有一个巨大的空白,相当难看。这是我使用的代码:

\[
x=a\sqrt[n]{1-\left(\dfrac{\sqrt[n]{\dfrac{\sqrt[2-n]{\left(\dfrac{a} 
{b}\right)^{2n}}}{\dfrac{1}{a^n}+\dfrac{1}{b^n}\left(\sqrt[2-n] 
{\left(\dfrac{a}{b}\right)^{2n}}\right)}}}{b}\right)^n}
\]

在此处输入图片描述

有没有办法缩短牙套和牙根,让它们看起来更接近这个? 在此处输入图片描述

答案1

我不确定如此可怕的公式是否能帮助读者。

无论如何,不​​用猜测尺寸,就可以让它不那么丑。无论如何,我添加了一个两层楼的版本。

\documentclass{article}
\usepackage{amsmath}

\begin{document}

\[
\sbox0{$\displaystyle
  \dfrac{
    \sqrt[n]{
      \dfrac{
        \sqrt[2-n]{\left(\dfrac{a}{b}\right)^{2n}}
      }{
        \dfrac{1}{a^n}+
        \dfrac{1}{b^n}\sqrt[2-n]{\left(\dfrac{a}{b}\right)^{2n}}
      }
    }
  }{b}
$}
%
x=a\sqrt[n]{
  1-
  \raisebox{\dimexpr\depth-3\fontdimen22\textfont2}{$
    \left(\begin{gathered}\usebox{0}\end{gathered}\:\right)^n
  $}
}
\]

\[
x=a
\left(1-
  \left(
    \dfrac{1}{b}
    \sqrt[n]{
      \dfrac{
        (a/b)^{2n/(2-n)}
      }{
        a^{-n}+b^{-n}(a/b)^{2n/(2-n)}
      }
    }\,
  \right)^{\!\!n}\;
\right)^{\!\!1/n}
\]

\end{document}

在此处输入图片描述

答案2

我提出这个 hack,经过反复试验发现:

\documentclass{article}
 \usepackage{mathtools}

\begin{document}

\[
\raisebox{-4.25ex}{$ x=a $}\sqrt[n]{\raisebox{-4.25ex}{$ 1- {}$}\begin{pmatrix}\dfrac{\sqrt[n]{\dfrac{\sqrt[2-n]{\left(\dfrac{a}
{b}\right)^{2n}}}{\dfrac{1}{a^n}+\dfrac{1}{b^n}\left(\sqrt[2-n]
{\left(\dfrac{a}{b}\right)^{2n}}\right)}}}{\begin{matrix}b \\ \mbox{}\end{matrix}}\end{pmatrix}^n}
\]

\end{document} 

在此处输入图片描述

相关内容