我怎样才能将上标移得更高?

我怎样才能将上标移得更高?

我有这样的代码:(我使用了字体mtpro2。)

\renewcommand{\arraystretch}{1.6}    
\begin{tabular}{p{8cm}l}
    \multicolumn{2}{l}{(a)~$\left( \frac{81}{16}\right)^{-0.25}\times \left( \frac{8}{27}\right) ^{-\frac{2}{3}}\times (0.25)^{-2.5}+\left(\sqrt{243\sqrt{3}}\right)^{\frac{1}{11}}\times (\sqrt{3})^{-1}=?$} \\
    (b)~$\sqrt[3]{a^{\frac{9}{2}}\sqrt{a^{-3}}}\div \sqrt{\sqrt[3]{a^{-7}}\cdot \sqrt[3]{a}}=?$ & (c)~$(5+2\sqrt{6})^{2000}\cdot (5-2\sqrt{6})^{1999}$ \\
    (d)~$\sqrt[a-b]{x^{\frac{b+c}{c-a}}}\sqrt[b-c]{x^{\frac{c+a}{a-b}}}\sqrt[c-a]{ x^{\frac{a+b}{b-c}}}=?$  &(e)~$(x^{\frac{2}{3}}+x^{-\frac{2}{3}}+1)(x^{\frac{2}{3}}-x^{-\frac{2}{3}})(x-x^{-1})^{-1}=?$
\end{tabular}

在此处输入图片描述

我怎样才能使上标更高、更大一点?例如,(d) 中的橙色部分。我尝试过\displaystyle在 中加入子公式\sqrt{},但效果并不好。顺便说一句,我\renewcommand{\arraystretch}{1.6}在我的环境中使用 来延长行距tabular。我的方法够好吗?还有其他合适的方法可以做同样的事情吗?

答案1

虽然这种方法不会增加上标字体的大小,但它确实增加了脚本分数,通过使用x\strut^{\frac{b+c}{c-a}}而不是x^{\frac{b+c}{c-a}},将上标相对于\strut而不是放置x

\documentclass{article}

\begin{document}
\renewcommand{\arraystretch}{1.6}    
\begin{tabular}{p{8cm}l}
    \multicolumn{2}{l}{(a)~$\left( \frac{81}{16}\right)^{-0.25}\times \left( \frac{8}{27}\right) ^{-\frac{2}{3}}\times (0.25)^{-2.5}+\left(\sqrt{243\sqrt{3}}\right)^{\frac{1}{11}}\times (\sqrt{3})^{-1}=?$} \\
    (b)~$\sqrt[3]{a^{\frac{9}{2}}\sqrt{a^{-3}}}\div \sqrt{\sqrt[3]{a^{-7}}\cdot \sqrt[3]{a}}=?$ & (c)~$(5+2\sqrt{6})^{2000}\cdot (5-2\sqrt{6})^{1999}$ \\
    (d)~$\sqrt[a-b]{x\strut^{\frac{b+c}{c-a}}}\sqrt[b-c]{x\strut^{\frac{c+a}{a-b}}}\sqrt[c-a]{ x\strut^{\frac{a+b}{b-c}}}=?$  &(e)~$(x^{\frac{2}{3}}+x^{-\frac{2}{3}}+1)(x^{\frac{2}{3}}-x^{-\frac{2}{3}})(x-x^{-1})^{-1}=?$
\end{tabular}
\end{document}

在此处输入图片描述

\strut为了比较,这里没有

在此处输入图片描述

答案2

只是怎么样x^{^{\frac{b+c}{c-a}}}

相关内容