TikZ-Matrix: Wieso funktioniert xshift nicht?
Ich wollte die Methode aus [wie-kann-ich-den-spaltenabstand-in-einer-tikz-matrix-zeilenweise-andern][1] anwenden.
Was muss ich machen, dass der `xshift` funktioniert?
[![alt text][2]][2]
\documentclass[varwidth, margin=5mm]{standalone}
%\documentclass[a4paper]{article}
\usepackage[ngerman]{babel}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{amsmath, relsize, tikz}
\usetikzlibrary{matrix}
\begin{document}
\begin{tikzpicture}[%scale=0.5, transform shape,
-latex,font=\sffamily\footnotesize,
]
\def\gDGL{Gewöhnliche Differentialgleichung}
\def\lDGL{Lineare DGL}
\def\nlDGL{Nichtlineare DGL}%|[xshift=-0em]|
\matrix (m) [
matrix of nodes,
nodes in empty cells,
row sep=0.5em, column sep=0.5em,
minimum width=1em,
cells={anchor=base west,},
%
nodes={draw, align=left},
column 2/.style={xshift=-2cm},
%column 2/.style={nodes={transform shape = {xshift=-25em}}},
]
{
\gDGL & 2 & 3 & 4 & 5 & 6 & 7 & 8 \\
\lDGL & \nlDGL & 3 & 4 & 5 & 6 & \lDGL & \nlDGL \\
1 & 2 & 3 & 4 & 5 & 6 & 7 & 8 \\
1 & 2 & 3 & 4 & 5 & 6 & 7 & 8 \\
1 & 2 & 3 & 4 & 5 & 6 & 7 & 8 \\
};
\end{tikzpicture}
\end{document}
[1]: https://texwelt.de/wissen/fragen/21451/wie-kann-ich-den-spaltenabstand-in-einer-tikz-matrix-zeilenweise-andern
[2]: https://texwelt.de/wissen/upfiles/55555555_147.png
[3]: https://texwelt.de/wissen/upfiles/55555555_146.png
[4]: https://texwelt.de/wissen/upfiles/55555555_146.pnghttps://texwelt.de/wissen/upfiles/55555555_148.png