until now, for me it was enough to make matrices that way:
\begin{align*}
\begin{pmatrix}[cc|c]
1 & 2 & 3 \\
1 & 2 & 3 \\
\end{pmatrix}
\end{align*}
with redifining the matrix env like this (see https://tex.stackexchange.com/questions/2233/whats-the-best-way-make-an-augmented-coefficient-matrix)
\makeatletter
\renewcommand*\env@matrix[1][*\c@MaxMatrixCols c]{
\hskip -\arraycolsep
\let\@ifnextchar\new@ifnextchar
\array{#1}
}
\makeatother
but now I need to use the gauss package (https://www.ctan.org/pkg/gauss) but I still need the ability to set some kind of formatting string (like the [cc|c]). (to be specific, I need this vertical line to separate some columns from some other columns)
Can anyone help me to port the above described workaround to the gauss package?
gmatrixis built on top of (I'm just not that firm in writing plain tex macros). But as a quick fix I think this will serve. Nevertheless I'd still really appreciate the (in my opinion) more clean version with a "format string". – atticus May 11 '20 at 13:22gmatrix. However, you could recur to TikZ to emulate thegausspackage features and still have a customizable matrix. – May 11 '20 at 13:24gaussand most of TeX.SX users (not me) are Tikz lovers, so you will be helped if you ask. – May 11 '20 at 13:48