Was muss ich einstellen, damit die beiden Blöcke sich nahtlos in der Ecke berühren? Gibt es dafür eine Einstellung oder ist ein Jonglieren mit dem Zahlenwert bei Open in Online-Editor
\documentclass[border=5pt, varwidth]{standalone} %\documentclass[]{article} \usepackage[utf8]{inputenc} \usepackage[ngerman]{babel} \usepackage[T1]{fontenc} \usepackage{amsmath,amsfonts,amssymb, relsize} \usepackage{tikz} \usetikzlibrary{matrix} \begin{document} \def\LabelJordanblockI{\mathsmaller{(3 \times 3)}} \def\JordanblockI{% |[draw, densely dashed,label=below:\LabelJordanblockI,]| \begin{matrix} 0 & 1 & \\ & 0 & 1 \\ & & 0 \\ \end{matrix} }% \def\Ph{\phantom{1}} \def\BlockLeer{% %|[draw, densely dashed,label=below:\LabelJordanblockI,]| \begin{matrix} \Ph & \Ph & \Ph \\ & & \\ & & \\ \end{matrix} }% \def\LabelBlockUnbekannt{\mathsmaller{(? \times ?)}} \def\BlockUnbekannt{% |[draw, densely dashed,label=below:\LabelBlockUnbekannt,]| \begin{matrix} \Ph & \Ph & \Ph \\ & ? & \\ & & \\ \end{matrix} }% \begin{tikzpicture}[] \matrix (m) [label=below:{$\LabelBlockUnbekannt$}, matrix of math nodes, draw, densely dashed, inner ysep=2.5pt, %column sep=5ex, row sep = 5ex, nodes={ outer sep=0ex, % WAS MUSS ICH HIER EINSTELLEN? %inner sep=0.0em, %text width=1.5em,align=center } ] {% \JordanblockI & \BlockLeer \\ \BlockLeer & \BlockUnbekannt \\ }; \end{tikzpicture} \end{document} gefragt 23 Jun '16, 17:22 cis |
Das Label Damit die Linien nahtlos in einander übergehen, musst Du außerdem Open in Online-Editor
\documentclass[border=5pt]{standalone} \usepackage{amsmath} \usepackage{relsize} \usepackage{tikz} \usetikzlibrary{matrix} \newcommand*\LabelJordanblockI{\mathsmaller{(3 \times 3)}} \newcommand*\JordanblockI{% |[draw, densely dashed, label={[overlay]below:\LabelJordanblockI},% <- als overlay ]| \begin{matrix} 0 & 1 & \\ & 0 & 1 \\ & & 0 \\ \end{matrix} }% \newcommand*\Ph{\phantom{1}} \newcommand\BlockLeer{% \begin{matrix} \Ph & \Ph & \Ph \\ & & \\ & & \\ \end{matrix} }% \newcommand*\LabelBlockUnbekannt{\mathsmaller{(? \times ?)}} \newcommand*\BlockUnbekannt{% |[draw, densely dashed,label=below:\LabelBlockUnbekannt,]| \begin{matrix} \Ph & \Ph & \Ph \\ & ? & \\ & & \\ \end{matrix} }% \begin{document} \begin{tikzpicture} \matrix (m)[ label=below:{$\LabelBlockUnbekannt$}, matrix of math nodes, draw, densely dashed, inner ysep=2.5pt, column sep=-\pgflinewidth,% <- column sep passend setzen row sep=-\pgflinewidth% <- row sep passend setzen ] {% \JordanblockI & \BlockLeer \\ \BlockLeer & \BlockUnbekannt \\ }; \end{tikzpicture} \end{document} beantwortet 23 Jun '16, 21:36 esdd Ach so geht das... xD
(23 Jun '16, 22:26)
cis
|