Wie kann ich beim Gaußalgorithmus diagonale Punkte zwischen den Pfeilen neben der Matrix darstellen?
Hallo liebe LaTeX-Freunde,
ich möchte die einzelnen Schritte vom Gauß Algorithmus visualisieren. Das funktioniert wunderbar mit dem `gauss` Paket. Doch wenn ich eine variable Anzahl von Operationen mittels diagonalen Punkten zwischen den Pfeilen rechts neben der Matrix darstellen möchte stoße ich auf meine Grenzen. Hier mal mein Minimalbeispiel:
\documentclass[preview]{standalone}
\usepackage{gauss}
\begin{document}
\begin{align*}
\begin{gmatrix}[p]
1 & \mathsf{x} & \mathsf{x} & \cdots & \mathsf{x} \\
\mathsf{x} & 1 & \mathsf{x} & & \vdots\\
\mathsf{x} & \mathsf{x} & \ddots & \ddots & \\
\vdots & & \ddots & & \mathsf{x} \\
\mathsf{x} & \cdots& & \mathsf{x} & 1
\rowops
\add[-1]{0}{1}
\add[-1]{0}{2}
$\ddots$
\add[-1]{0}{4}
\end{gmatrix}
\end{align*}
\end{document}
![alt text][1]
Hier sollten nun die diagonalen Punkte zwischen den Pfeilen in etwa zwischen dem 2. und dem 3. `+` Zeichen auftauchen. Ich hoffe das war einigermaßen verständlich und mir kann Jemand weiter helfen!
Edit:
Dank der Antwort von sapotello ist obiges Problem gelöst.
Bei der Anwendung der Lösung auf die Spaltenoperationen stoße ich nun jedoch auf das Problem, dass die diagonalen Punkte sich nicht richtig in vertikaler Richtung positionieren lassen. Mein Minimalbsp. hierzu:
\documentclass[preview]{standalone}
\usepackage{mathdots}
\usepackage{gauss}
\newcommand*{\dmultlabel}[2]{%
\begingroup
\renewcommand*\colmultlabel[1]{##1}%
\mult{#1}{#2}%
\endgroup
}
\begin{document}
\begin{align*}
\begin{gmatrix}[p]
1 & \mathsf{x} & \mathsf{x} & \cdots & \mathsf{x} \\
\mathsf{x} & 1 & \mathsf{x} & & \vdots\\
\mathsf{x} & \mathsf{x} & \ddots & \ddots & \\
\vdots & & \ddots & & \mathsf{x} \\
\mathsf{x} & \cdots& & \mathsf{x} & 1
\colops
\add[-1]{0}{1}
\add[-1]{0}{2}
\dmultlabel{3}{\vspace{5em}\iddots}
\add[-1]{0}{4}
\end{gmatrix}
\end{align*}
\end{document}
![alt text][2]
[1]: http://texwelt.de/wissen/upfiles/fill-p1_1.jpghttp://texwelt.de/wissen/upfiles/fill-p1_1.jpg
[2]: http://texwelt.de/wissen/upfiles/fill-p1_2.jpg