左右下标/上标

左右下标/上标

我想在字符的左右两侧放置两个下标。例如: _{t} p_{x} p 位于中间。该怎么做?

答案1

有很多脚本工具:

  • 对于某些内容之前的一般数学脚本,请使用\prescript提供的mathtools,以便更好地对齐:

    $ \prescript{14}{2}{\mathbf{C}} $

  • 或者,为了使左上标缩进以更好地适应符号的形状,请使用包\leftindex中的leftindex命令:

    $ \leftindex^a_b {f}$
    $ \leftindex[I]^a_b {L} $

  • 对于大型运营商,\sideset使用amsmath

    $ \sideset{_a^b}{'}{\sum} A_n $

  • 对于张量,使用tensor包:

    $ M\indices{^a_b^{cd}_e} $
    $ \tensor[^a_b^c_d]{M}{^a_b^c_d} $

  • 对于化学方程式,使用mhchem包:

    \ce{^{227}_{90}Th+}

请尽可能完成此列表。

视觉效果: 在此处输入图片描述

源代码:

\documentclass{minimal}

\usepackage{mathtools,leftindex,tensor,mhchem}

\begin{document}

\verb!mathtools!:
$ \prescript{14}{2}{\mathbf{C}} $

\medskip

\verb!leftindex!:
$ \leftindex^a_b {f}$, $\leftindex[I]^a_b {L} $

\medskip

\verb!amsmath!:
$ \displaystyle \sideset{_a^b}{'}{\sum} A_n $

\medskip

\verb!tensor!:
$ \tensor[^a_b^c_d]{M}{^a_b^c_d} $,
$ M\indices{^a_b^{cd}_e} $

\medskip

\verb!mhchem!:
\ce{^{227}_{90}Th+}

\end{document}

答案2

您是在数学模式下执行此操作吗?

${}_{t}p_{x}$

应该管用。

答案3

到目前为止我见过的最佳解决方案是:

${}_{2}x_{1}$

图片1

对于左上标和右上标和下标的更一般情况,可以写为:

${}^{1}_{2}x^{3}_{4}$

图片2

答案4

您可以使用leftidx能够生成左、右下标和上标的包。

与使用简单的连续下标或上标(如中)相反,$_{t}p_{x}$它负责使用 调整参数的索引\vphantom。从其来源来看:

\newcommand\leftidx[3]{%
  {\vphantom{#2}}#1#2#3%
}

相关内容