У меня есть следующее уравнение:
\begin{align}
\begin{split}
&\phantom{{}={}} [ (1,1,1) : (1,1) : (1,2) : (1) : (2,2,2) : (2,2) : (2) : (3) ] \\
\textsc{one} &= [ 0 : 3 : 0 : 0 : 0 : 0 : 0 : 0 ] \\
\textsc{two} &= [ 1 : 0 : 3 : 0 : -1 : 0 : 0 : 0 ] \\
\textsc{three} &= [ 0 : 0 : 3 : 0 : -1 : 0 : 0 : 0 ] \\
\end{split}
\end{align}
\end{document}
Мне бы хотелось, чтобы открывающая [
, каждая :
и закрывающая строки ]
были выровнены по вертикали, чтобы они соответствовали верхней строке.
Я пробовал различные комбинации align, alignat, equal,alignat, но не смог найти ничего работающего.
Буду признателен за любую ссылку.
Я попробовал выровнять по другим ответам:
\begin{equation}
\begin{alignedat}{9}
&[ (1,1,1) &: (1,1) &: (1,2) &: (1) &: (2,2,2) &: (2,2) &: (2) &: (3) & & ] \\
\textsc{one} = &[ 0 &: 3 &: 0 &: 0 &: 0 &: 0 &: 0 &: 0 & &] \\
\textsc{two} = &[ 1 &: 0 &: 3 &: 0 &: -1 &: 0 &: 0 &: 0 & & ] \\
\textsc{three} = &[ 0 &: 0 &: 3 &: 0 &: -1 &: 0 &: 0 &: 0 & &] \\
\end{alignedat}
\end{equation}
но на самом деле, похоже, он не выполняет выравнивание (выравнивает только некоторые :).
решение1
Вы можете использовать autoaligne
:
\documentclass{article}
\usepackage{amsmath}
\usepackage{autoaligne}
\begin{document}
\begin{equation}
\definirseparateurs{\\}{}{:||[||]}
\autoaligne[*d]{
[\, (1,1,1) : (1,1) : (1,2) : (1) : (2,2,2) : (2,2) : (2) : (3) \,] \\
\textsc{one}={} [\, 0 : 3 : 0 : 0 : 0 : 0 : 0 : 0 \,] \\
\textsc{two}={} [\, 1 : 0 : 3 : 0 : -1 : 0 : 0 : 0 \,] \\
\textsc{three}={} [\, 0 : 0 : 3 : 0 : -1 : 0 : 0 : 0 \,]
}
\end{equation}
\begin{equation}
\definirseparateurs{\\}{}{:||[||]}
\autoaligne[*c]{
[\, (1,1,1) : (1,1) : (1,2) : (1) : (2,2,2) : (2,2) : (2) : (3) \,] \\
\hfill\textsc{one}={} [\, 0 : 3 : 0 : 0 : 0 : 0 : 0 : 0 \,] \\
\hfill\textsc{two}={} [\, 1 : 0 : 3 : 0 : -1 : 0 : 0 : 0 \,] \\
\hfill\textsc{three}={} [\, 0 : 0 : 3 : 0 : -1 : 0 : 0 : 0 \,]
}
\end{equation}
\end{document}
решение2
Я бы использовал массив
\documentclass{article}
\usepackage{amsmath,array}
\begin{document}
\begin{equation}
\begin{array}{r<{{}}@{[}r@{:}r@{:}r@{:}r@{:}r@{:}r@{:}r@{:}r@{]}}
& (1,1,1) & (1,1) & (1,2) & (1) & (2,2,2) & (2,2) & (2) & (3) \\
\textsc{one} = & 0 & 3 & 0 & 0 & 0 & 0 & 0 & 0 \\
\textsc{two} = & 1 & 0 & 3 & 0 & -1 & 0 & 0 & 0 \\
\textsc{three} = & 0 & 0 & 3 & 0 & -1 & 0 & 0 & 0 \\
\end{array}
\end{equation}
\end{document}
решение3
Вот правильный код alignedat
:
\documentclass[]{article}
\usepackage{mathtools}
\begin{document}
\begin{equation}
\begin{alignedat}{9}
&[ (1,1,1) & & : (1,1) & & : (1,2) & & : (1) & & : (2,2,2) & & : (2,2) & & : (2) & & : (3) & & ] \\
\textsc{one} = {}&[ 0 & & : 3 & & : 0 & & : 0 & & : 0 & & : 0 & & : 0 & & : 0 & &] \\
\textsc{two} = {}&[ 1 & & : 0 & & : 3 & & : 0 & & : -1 & & : 0 & & : 0 & & : 0 & & ] \\
\textsc{three} = {}&[ 0 & & : 0 & & : 3 & & : 0 & &: -1 & & : 0 & & : 0 & & : 0 & &] \\
\end{alignedat}
\end{equation}
\end{document}
решение4
Вот TABstack.
\documentclass[12pt]{article}
\usepackage{tabstackengine,amsmath}
\begin{document}
\begin{equation}
\setstacktabbedgap{3pt}
\tabbedCenterstack[r]{
[& (1,1,1) :& (1,1) :& (1,2) :& (1) :& (2,2,2) :& (2,2) :& (2) :& (3) & ] \\
\textsc{one} = [& 0 :& 3 :& 0 :& 0 :& 0 :& 0 :& 0 :& 0 &] \\
\textsc{two} = [& 1 :& 0 :& 3 :& 0 :& -1 :& 0 :& 0 :& 0 & ] \\
\textsc{three} = [& 0 :& 0 :& 3 :& 0 :& -1 :& 0 :& 0 :& 0 &]
}
\end{equation}
\end{document}