是否可以修改符号的子标和上标的水平对齐方式?也就是说,是否可以得到这对右对齐的子标/上标
而不是这对左对齐的上/下标
当我有这样的代码时:
\documentclass{standalone}
\usepackage{amsmath}
\begin{document}
$x_{101}^{1}$
\end{document}
笔记:我是不是寻找一个手动的解决方案(例如,hphantom
我使用它来创建上述示例)而是真正的自动化一击即中解决方案。
编辑:我对不修补现有子/上标机制的解决方案很满意(尽管我很好奇这是否可行)。该解决方案还可以使用自定义命令,即\foo{x}{101}{1}
只要它遵循正确的数学模式子/上标间距等。
答案1
我不确定这样做的目的是什么,但它是这样的:
\documentclass{article}
\usepackage{mathtools}
\DeclareRobustCommand{\subsup}[3]{{%
\mathpalette\makesubsup{{#1}{#2}{#3}}%
}}
\makeatletter
\providecommand{\@firstofthree}[3]{#1}
\providecommand{\@secondofthree}[3]{#2}
\providecommand{\@thirdofthree}[3]{#3}
\newcommand{\makesubsup}[2]{%
\sbox\z@{$\m@th#1{}_{\@secondofthree#2}$}%
\sbox\tw@{$\m@th#1{}^{\@thirdofthree#2}$}%
\dimen@=\wd\z@
\ifdim\wd\tw@>\wd\z@ \dimen@=\wd\tw@\fi
{\mkern0mu \@firstofthree#2}%
_{\mathmakebox[\dimen@][r]{\@secondofthree#2}}%
^{\mathmakebox[\dimen@][r]{\@thirdofthree#2}}%
}
\makeatother
\begin{document}
$\subsup{x}{101}{1}-\subsup{y}{1}{101}$
$A_{\subsup{x}{101}{1}}$
\end{document}
只需测量下标和上标,并使框与大框一样宽即可。请注意,这也适用于第二级下标/上标。
答案2
这是一个开始,使用\Ss{}{}{}
。编辑后也可用于显示样式。编辑后也可用于自动使用下标样式。修复了明显的错误,即如果上标长度超过下标长度,宏将无法正常运行。
\documentclass{article}
\usepackage{amsmath,stackengine,scalerel}
\newcommand\Ss[3]{\setbox0=\hbox{$#2$}\setbox2=\hbox{$#3$}\ifdim\wd2<\wd0%
\ThisStyle{\ensurestackMath{\stackengine%
{0pt}{\SavedStyle#1_{#2}^{}}{\SavedStyle{\phantom{#1}}^{#3}}{O}{r}{F}{F}{L}}}%
\else
\ThisStyle{\ensurestackMath{\stackengine%
{0pt}{\SavedStyle{\phantom{#1}}_{#2}^{}}{\SavedStyle#1^{#3}}{O}{r}{F}{F}{L}}}%
\fi
}
\begin{document}
\parskip 4pt\centering
$x_{101}^{1}$
$\Ss{x}{101}{1}$
$X_{101}^{1}$
$\Ss{X}{101}{1}$
$(A)_{123}^{ijklm}$
$\Ss{(A)}{123}{ijklm}$
\[
\biggl(\frac{1}{2}\biggr)_{123}^{4}\quad
\Ss{\biggl(\frac{1}{2}\biggr)}{123}{4}
\]
$A_{\Ss{x}{101}{1}}$
\end{document}
答案3
例如,你可以尝试这个:
\def\sf#1_#2^#3{%
\setbox1=\hbox{$\scriptstyle#2$}%
\setbox2=\hbox{$\scriptstyle#3$}%
\ifdim\wd2>\wd1 \dimen0=\wd2 \else \dimen0=\wd1 \fi
\setbox2=\hbox to\dimen0{\hss\box2}%
\setbox1=\hbox to\dimen0{\hss\box1}%
#1_{\box1}^{\box2}
}
$\sf x_{100}^{2}$
\bye