Wähle ich Kann man da etwas machen? Öffne in Overleaf
\documentclass[margin=0pt]{standalone}% \usepackage{tikz} \begin{document} \begin{tikzpicture}[very thick] \draw[] (0,0) -- (2,3) node[midway, above, sloped]{gut}; \draw[red, dashed, shorten >=-2cm] (0,0) -- (2,3) node[midway, below, sloped]{schlecht}; \end{tikzpicture} \end{document} gefragt 25 Mai '19, 15:25 cis |
Öffne in Overleaf
\documentclass[margin=0pt]{standalone}% \usepackage{tikz} \usetikzlibrary{calc} \begin{document} \begin{tikzpicture}[very thick] \coordinate(start) at (0,0); \coordinate(stop) at (2,3); \draw[] (start) -- (stop) node[midway, above, sloped]{gut} node[midway, below, sloped]{schlecht}; \draw[red, dashed] (start) -- ($(stop)!-1cm!(start)$); \end{tikzpicture} \end{document} beantwortet 25 Mai '19, 16:51 Ulrike Fischer Ja, warum nicht. Dass der klassische Weg möglich ist, wusste ich. Mich hätte interessiert, ob man
(25 Mai '19, 19:41)
cis
1
Nein, kann man nicht. https://tex.stackexchange.com/questions/136373/shorten-and-bounding-box-in-tikz-possible-bug
(25 Mai '19, 23:17)
Ulrike Fischer
|