我在用
\documentclass[12pt]{article}
\usepackage{amsmath}
\begin{document}
\begin{multline}
\big_{1}[_{2}(...)_{2}\big]_{1}.
\end{multline}
\end{document}
下部后缀仅适用于右侧,不适用于左侧。有什么办法可以解决这个问题吗?
答案1
一个粗暴的解决方案是使用.
虚拟分隔符。
\documentclass[12pt]{article}
\usepackage{amsmath}
\begin{document}
\begin{multline}
\big._{1}[_{2}(...)_{2}\big]_{1}.
\end{multline}
\end{document}
\prescript
来自的命令mathtools 包是一种更令人满意的方法。
\documentclass[12pt]{article}
\usepackage{mathtools}
\begin{document}
\begin{multline}
\prescript{}{1}{[_{2}(...)_{2}\big]_{1}}.
\end{multline}
\end{document}