I am trying to use the Gauss TeX package to display matrices. I have two problems with the following code (not so important):
\usepackage{amsmath}
\usepackage{gauss}
\begin{document}
\begin{equation}\begin{gmatrix}[b]
1 & 0 & 0 & 0 & \frac{4}{5} & \text{\small{-}}\frac{3}{5} & \frac{2}{5} & \text{\small{-}}\frac{1}{5} \\
0 & 1 & 0 & 0 & \text{\small{-}}\frac{3}{5} & \frac{6}{5} & \text{\small{-}}\frac{4}{5} & \frac{2}{5} \\
0 & 0 & 1 & \frac{3}{4} & \frac{1}{4} & \text{\small{-}}\frac{1}{2} & \frac{3}{4} & 0 \\
0 & 0 & 0 & 1 & \text{\small{-}}\frac{1}{5} & \frac{2}{5} & \text{\small{-}}\frac{3}{5} & \frac{4}{5}
\rowops
\add[\cdot ({-}\frac{3}{4})]{3}{2}
\end{gmatrix} \cong
\begin{gmatrix}[b]
1 & 0 & 0 & 0 & \frac{4}{5} & \text{\small{-}}\frac{3}{5} & \frac{2}{5} & \text{\small{-}}\frac{1}{5} \\
0 & 1 & 0 & 0 & \text{\small{-}}\frac{3}{5} & \frac{6}{5} & \text{\small{-}}\frac{4}{5} & \frac{2}{5} \\
0 & 0 & 1 & 0 & \frac{2}{5} & \text{\small{-}}\frac{4}{5} & \frac{6}{5} & \text{\small{-}}\frac{3}{5} \\
0 & 0 & 0 & 1 & \text{\small{-}}\frac{1}{5} & \frac{2}{5} & \text{\small{-}}\frac{3}{5} & \frac{4}{5}
\end{gmatrix}\end{equation}
\end{document}
It looks like this:

I bypassed the alignment a bit by using "\text{\small{-}}" in stead of "-", to make the fractions appear under each other, but they still don't line up quite nicely and the matrix need more vertical space but I cannot seem to figure out how to do this. Any help would be appreciated :-)