I'd like to left align the -1 entry in the following matrix so that the 1s line up. Is there a way to get matrices to ignore signs in that way?
\begin{matrix}
1 & 1 \\
1 & -1 \\
\end{matrix}
Using \flushright{-1} doesn't seem to work.
I'd like to left align the -1 entry in the following matrix so that the 1s line up. Is there a way to get matrices to ignore signs in that way?
\begin{matrix}
1 & 1 \\
1 & -1 \\
\end{matrix}
Using \flushright{-1} doesn't seem to work.
I know that this is an old question, but to whoever stumbles upon this from a Google search (like I just did) another very elegant solution for this is using the starred matrix environments of mathtools:
\begin{matrix*} [〈col〉] 〈contents〉 \end{matrix*}: simple matrix,\begin{pmatrix*}[〈col〉] 〈contents〉 \end{pmatrix*}: matrix surrounded by matching parenthesis,\begin{bmatrix*}[〈col〉] 〈contents〉 \end{bmatrix*}: matrix surrounded by matching square brackets,\begin{Bmatrix*}[〈col〉] 〈contents〉 \end{Bmatrix*}: matrix surrounded by matching curly brackets (braces),\begin{vmatrix*}[〈col〉] 〈contents〉 \end{vmatrix*}: matrix surrounded by matching vertical lines (like for determinant),\begin{Vmatrix*}[〈col〉] 〈contents〉 \end{Vmatrix*}: matrix surrounded by matching double vertical lines.The <col> optional argument specifies the column alignment, and should be c, l or r for centered (default), left-aligned and right-aligned, respectively. Consider the following example,
\documentclass{article}
\usepackage{mathtools}
\begin{document}
\[
\begin{pmatrix*}[r]
-1 & 3 \\
2 & -4
\end{pmatrix*}
\]
\[
\begin{Bmatrix*}[l]
1.001 &\hdots & 3 \\
2.3 & \hdots & 4.2
\end{Bmatrix*}
\]
\[
\begin{Vmatrix*}[c]
1 & 3 \\
\tfrac{1}{2} & 4.2
\end{Vmatrix*}
\]
\end{document}
which yields

The mathtools package is an extension of amsmath that fixes various bugs/deficiencies and adds some useful tools (like the starred matrix environments).
mathtools has the same *ed variants of the family of smallmatrix environments.
– Tyson Williams
Mar 20 '14 at 19:39
A quick way to do this is by adding phantom characters:
\begin{matrix}
1 & \phantom{-}1 \\
1 & -1 \\
\end{matrix}

Although for simple arrays like this it's probably simpler just to use a standard array environment
\begin{array}{rr}
1 & 1 \\
1 & -1 \\
\end{array}
for the same result. Note that if you need control over alignment, then array is the preferred way to typeset matrices (you can simply wrap in \left( ... \right) etc. for brackets and lines).
amsmath package is an excellent resource.
– qubyte
Feb 19 '12 at 05:11
If you using LaTeX2e out of the box, you can use the array environment, which is similar to a tabular:
\documentclass{article}
\begin{document}
\[
\begin{array}{rr}
1 & 1 \\
1 & -1 \\
\end{array}
\]
\end{document}
In the environments of nicematrix, you have an option r for that.
\documentclass{article}
\usepackage{nicematrix}
\begin{document}
$\begin{pNiceMatrix}[r]
1 & -1 \
1 & 1
\end{pNiceMatrix}$
\end{document}
The question of @Dimas is fine. The \begin{pmatrix*}[r], however, does not work well when the numbers have a different number of digits. Let me add this answer, which defines a new column type [C]. It requires the tabularx package. Note: This answer is based on another answer from StackExchange (I could not identify the link).
Here is the code and the output:
\documentclass{article}
\usepackage{mathtools}
\usepackage{tabularx}
\makeatletter
\def\zz\ignorespaces{\@ifnextchar-{}{\phantom{-}}}
\newcolumntype{C}{>{\zz}{c}}
\makeatother
\begin{document}
\begin{equation}
\begin{bmatrix}
1 & 1234\\
-2 & 2
\end{bmatrix}
\end{equation}
\begin{equation}
\begin{bmatrix*}[r]
1 & 1234\\
-2 & 2
\end{bmatrix*}
\end{equation}
\begin{equation}
\begin{bmatrix*}[C]
1 & 1234\\
-2 & 2
\end{bmatrix*}
\end{equation}
\end{document}
With the spalign package of the October 5, 2016, using the command \spalignmat option right r it is possible to have easily the alignment of the signs of the matrix's elements.
There is also the option c (center) and l (left).
\documentclass[a4paper,12pt]{article}
\usepackage{spalign}
\begin{document}
\[ \spalignmat[r]{-5 -1 +2; -1 -5 +7; +1 -6 -3} \]
\end{document}