我已經閱讀過詳細介紹如何創建不佔用任何空間的文本的帖子。我的問題是我在這種情況下做得是否正確。
\documentclass{article}
\usepackage{mathtools}
\newcommand{\n}{\makebox[0pt][r]{$-$}}
\begin{document}
Not using my custom command
\begin{alignat*}{3}
a_1 & {}-{} & a_2 & {}={} & -3\\
&& a_2 & {}={} & 8\\
&& - a_2 & {}={} & 8
\end{alignat*}
Using my custom command
\begin{alignat*}{3}
a_1 & {}-{} & a_2 & {}={} & -3\\
&& a_2 & {}={} & 8\\
&& \n a_2 & {}={} & 8
\end{alignat*}
\end{document}
該命令\n
對我來說似乎有點老套,所以我想知道是否有更好的解決方案來解決我的問題。
答案1
你的定義並不是很老派。您可以使用以下命令更簡單地定義它\llap
:
\newcommand\n{\llap{$-$}}
\llap
和分別與和\rlap
基本相同。\makebox[0pt][r]
\makebox[0pt][l]
答案2
有更好的方法:包包systeme
和autoaligne
.前者的語法更簡單,後者更強大,但在缺少術語時也更困難。
\documentclass{article}
\usepackage{autoaligne}
\usepackage{systeme}
\usepackage{regexpatch}
% see http://tex.stackexchange.com/questions/247070/
\makeatletter
\xpatchcmd{\SYS@makesyspreamble@i}
{$##$\hfil\null}% left alignment
{\hfil$##$\null}% right alignment
{}{}
\makeatother
\begin{document}
\[
\sysdelim..
\systeme{
a_1 - a_2 = -3,
a_2 = 8,
-a_2= -8
}
\]
\[
\autoaligne[dd]{%
a_1-a_2=-3 \\%
+a_2=8 \\
-a_2=-8
}
\]
\end{document}