Was muss ich einstellen, dass die ' Bei unterschiedlicher Liniendicke habe ich gerade gar keine Idee, wie man dass dann am besten macht. Interessant wäre, ob es eine globale Einstellung dafür gibt, so dass man nicht immer mit Öffne in Overleaf
\documentclass[margin=5mm]{standalone} \usepackage{tikz} %\usetikzlibrary{calc} \begin{document} \begin{tikzpicture}[font=\footnotesize] \draw[densely dashed] (0,0) -- (2,0); \draw[densely dashed, very thick] (0,2) -- (2,2) node[midway, above, sloped]{absichtlich thick}; \draw[|<->|, >=latex] (0.5,0) -- (0.5,2) node[midway, above, sloped]{schlecht}; \draw[|<->|, >=latex] (1.0,-\pgflinewidth) -- (1.0,2cm+\pgflinewidth) node[midway, above, sloped]{auch schlecht}; \end{tikzpicture} \end{document} gefragt 22 Apr '19, 07:08 cis |
OK, man kann es so hinmogeln Interessant wäre, ob es eine globale Einstellung dafür gibt, so dass man nicht immer mit Öffne in Overleaf
\documentclass[margin=5mm]{standalone} \usepackage{tikz} %\usetikzlibrary{calc} \begin{document} \begin{tikzpicture}[font=\footnotesize] \draw[densely dashed] (0,0) -- (2,0); \draw[densely dashed, very thick] (0,2) -- (2,2) node[midway, above, sloped]{absichtlich thick}; \draw[|<->|, >=latex] (0.5,0) -- (0.5,2) node[midway, above, sloped]{schlecht}; \draw[|<->|, >=latex] (1.0,-0.5\pgflinewidth) -- (1.0,2cm+1.5\pgflinewidth) node[midway, above, sloped]{gut}; \end{tikzpicture} \end{document} beantwortet 22 Apr '19, 07:27 cis
(23 Apr '19, 01:33)
Henri
Eine globale Einstellung kann es dafür nicht geben, weil es, wie du ja gesehen hast, davon abhängt, ob die Linie, zu der den Abstand messen willst,
(23 Apr '19, 01:35)
Henri
Wenn man das thick mal weglässt sollte ein style mit shorten gehen. ;)
(23 Apr '19, 21:04)
cis
|