I have a quite long equation in my work, and unfortunately it extends 'too right' to the paper alignment with respect to the page number in the header.
Is there any command to make it centered without aligning to that right?
Code: Select all
\begin{equation*}
\begin{matrix}
\ i = 1 : & \begin{vmatrix} a_{32} & a_{33} & a_{34} \\ a_{22} & a_{23} & a_{24} \\ a_{12} & a_{13} & a_{14} \end{vmatrix} & & & & & \\
\ i = 2 : & \begin{vmatrix} a_{31} & a_{33} & a_{34} \\ a_{21} & a_{23} & a_{24} \\ a_{11} & a_{13} & a_{14} \end{vmatrix} & \emph{compare with} &
\begin{vmatrix} a_{31} & a_{32} & a_{33} \\ a_{21} & a_{22} & a_{23} \\ a_{11} & a_{12} & a_{13} \end{vmatrix} & \implies
& \begin{tabular}{c|ccc}
\backslashbox[6pt][l]{i}{j} & 1 & 2 & 3\\\hline
1 & 1 & 1 & 1 \\
2 & 0 & 1 & 1 \\
3 & 0 & 0 & 1 \\
4 & 0 & 0 & 0
\end{tabular}
\xRightarrow[Table]{Simplified}
& \begin{tabular}{|c|c|c|}
\hline
1 & 1 & 1 \\ \hline
0 & 1 & 1 \\ \hline
0 & 0 & 1 \\ \hline
0 & 0 & 0 \\ \hline
\end{tabular} \\
\ i = 3 : & \begin{vmatrix} a_{31} & a_{32} & a_{33} \\ a_{21} & a_{22} & a_{23} \\ a_{11} & a_{12} & a_{13} \end{vmatrix} & & & &
\end{matrix}
\end{equation*}
EDIT: Also, can we include tabular or matrix equation (not the 'envioronment' but things like \begin{matrix} ... \end{matrix}) in environment figure?
Basically I want to programme some matrix equation, but instead of referring as equation, figure reference is needed. So I am thinking putting \begin{matrix} ... \end{matrix} in \begin{figure} ... \end{figure}, but it doesn't work...
Code: Select all
\begin{figure}
\begin{matrix}
...
\end{matrix}
\end{figure}
Thank you

wolfrain