这里有很多关于增加平方根高度的问题(例如如何调整/增加平方根的高度?),但我想减少它。考虑以下代码和图片:
\sqrt{\tfrac{2 \log \left(2 n T^{2}\right)}{s}}
我认为 T 上的指数导致了问题,所以降低指数可能会有帮助吗?感谢您的帮助。
答案1
我提出五种可能性。最上面的一个是你的,哪里\left
和\right
是造成大空间的原因。
\documentclass{article}
\usepackage{mathtools}
\begin{document}
\begin{alignat}{2}
&\text{with \texttt{\string\left...\string\right}}&\quad&
\sqrt{\tfrac{2 \log \left(2 n T^{2}\right)}{s}}
\\
&\text{without \texttt{\string\left...\string\right}}&&
\sqrt{\tfrac{2 \log (2 n T^{2})}{s}}
\\
&\text{with \texttt{\string\cramped}}&&
\sqrt{\tfrac{\cramped{2 \log (2 n T^{2})}}{s}}
\\
&\text{smashing the numerator}&&
\sqrt{\tfrac{2\smash[t]{{}\log (2 n T^{2})}}{s}}
\\
&\text{smashing and cramping the numerator}&&
\sqrt{\tfrac{2\smash[t]{{}\log (2 n \cramped{T^{2}})}}{s}}
\end{alignat}
\end{document}
我选择最简单的一个,即(2)。