请教我如何提高指数的高度

请教我如何提高指数的高度

有人可以教我如何提高分数的指数高度吗?

我尝试了各种论坛上的许多修复方法,但都没有成功。

另外,请解释一下使用 \struct^ 和 ^ 之间的区别。

非常感谢!

这是我的代码...

\begin{document}

\makebox[\textwidth]{Name:\enspace\hrulefill}


\vspace{4mm}

\fbox{\fbox{\parbox{7.5 in}{
\textbf {Directions:} Solve the equations below. 
\newline
\newline \textbf {REQUIRED 1st step: Rewrite the original equation and place parentheses ( ) around each variable.} \\
\newline
YOU WILL NOT RECEIVE CREDIT IF YOU SKIP THIS STEP!!!}}}


%Use the 'tasks' tool to double column itemize and enumerate
%Credit to: https://tex.stackexchange.com/questions/402222/two-column-enumerated-list
%the first item sets the spacing
\settasks{after-item-skip=8em,
          after-skip=2cm,
          label-width=3ex,
          %change '1' to 'a' if you want letters instead of numbers
          counter-format=(tsk[1]),
          column-sep=2em
          }

\begin{tasks}(2)
\frac{n!}{k!(n-k)!}\task $\frac{2}{3} \div \biggr(-\frac{2}{7}\biggr)\strut^{2}$

答案1

你问,

有人可以教我如何提高分数的指数高度吗?

我已将您的代码片段简化为最低限度并使其可编译:

\documentclass{article}
\begin{document}
\[
\biggl(-\frac{2}{7}\biggr)\strut^{2}
\]
\end{document}

(另外:我还用\biggr(. \biggl(lr分别替换了代表“左”和“右”。)

我不知道为什么\strut会有这个指令。当然,它会完全弄乱排版。如果你省略它,指数(2)将放置在正确的高度。

在此处输入图片描述

\documentclass{article}
\begin{document}
\[
\biggl(-\frac{2}{7}\biggr)\strut^{2} \quad  % awful
\biggl(-\frac{2}{7}\biggr)^{2}       \quad  % better
\biggl(-\frac{2}{7}\biggr)^{\!2} % even better: place exponent closer to closing parenthesis
\]
\end{document}

\struct^你还问:“另外,请解释一下使用vs 的区别^。”(附言:我假设你的意思是\strut,而不是struct。)基本上,我不知道写作的目的\strut^{2}是什么;你从哪里养成了这个坏习惯?请尽快改掉它。

相关内容