答案1
\hspace{1000pt minus 1fill}
在环境末尾添加array
。
\documentclass{article}
\begin{document}
\[
\begin{array}{r l}
aaaa & d \\
bb & eeee \\
ccc & fff
\end{array}
\hspace{1000pt minus 1fill} % here it is
\]
\end{document}
您可以通过从左侧移除列空间来将其推得更近@{}
\documentclass{article}
\begin{document}
\[
\begin{array}{@{}r l} % at-expression here
aaaa & d \\
bb & eeee \\
ccc & fff
\end{array}
\hspace{1000pt minus 1fill} % here it is
\]
\end{document}