다음 방정식이 있습니다.
\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}
[
opening , Each :
및 Closing 을 ]
맨 위 행과 일치하도록 수직으로 정렬 하고 싶습니다 .
align, alignat, 방정식, alignmentat의 다양한 조합을 시도했지만 작동하는 항목을 찾을 수 없습니다.
어떤 포인터라도 감사하겠습니다.
다른 답변에서 정렬을 시도했습니다.
\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}