Ich möchte, möglichst mit Hilfe der Matrixkoordinaten (" Also habe ich Was muss ich da anders einstellen? Öffne in Overleaf
\documentclass[border=5mm, varwidth]{standalone} \usepackage{tikz} \usetikzlibrary{matrix} \begin{document} \tikzset{ matrixstyle/.style={ matrix of nodes, nodes in empty cells, column sep = 5mm, row sep = 5mm, nodes={inner sep=0mm,outer sep=0pt} }} \begin{tikzpicture}[] \matrix (m)[matrixstyle] { a &b & c \\ & & \\ }; \draw[step=5mm] (m-1-1.north west) grid (m-2-3.south east); %\fill[] (m-1-1.north west) circle(2pt); \end{tikzpicture} \end{document} gefragt 01 Apr '18, 16:34 cis |
Deine Nodes sind unterschiedlich breit und hoch und können auch unterschiedlich tief sein. Die Abstände Hier ist mal eine Alternative ohne Öffne in Overleaf
\documentclass[border=5mm]{standalone} \usepackage{tikz} \usetikzlibrary{matrix} \tikzset{ matrixstyle/.style={ matrix of nodes, nodes in empty cells, column sep = -\pgflinewidth, row sep = -\pgflinewidth, nodes={% inner sep=0mm,outer sep=0pt, minimum size=5mm, text height=\ht\strutbox,text depth=\dp\strutbox, draw } }} \begin{document} \begin{tikzpicture} \matrix (m)[matrixstyle] { a & b & c \\ & & \\ }; \end{tikzpicture} \end{document} beantwortet 01 Apr '18, 22:04 esdd Ah, sehr gut. Ich hatte vergessen zu sagen, dass die nodes eh leer sind (die Buchstaben sollen nur zeigen, dass es nicht klappt). So ist es natürlich noch besser, da allgemeiner. Mir geht es um ein Gitter, dessen Gitterpunkte automatisch Koordinaten erhalten. Daher wollte ich das mit einer matrix versuchen.
(01 Apr '18, 23:31)
cis
Wenn die Nodes leer sind, dann kannst Du die Vorgabe für
(01 Apr '18, 23:46)
esdd
|