2
0
Fork 0
mirror of https://github.com/MartinThoma/LaTeX-examples.git synced 2025-04-26 06:48:04 +02:00

Quality improvement of dashed lines

This commit is contained in:
Martin Thoma 2016-06-17 14:30:55 +02:00
parent 558bdc8ec5
commit b4c1bb3c42
3 changed files with 11 additions and 7 deletions

View file

@ -2,6 +2,7 @@
\usepackage[pdftex,active,tightpage]{preview}
\setlength\PreviewBorder{2mm}
\usepackage{tikz}
\usetikzlibrary{calc}
\usepackage{tkz-euclide}
\usetikzlibrary{shapes, calc, shapes, decorations}
\usepackage{amsmath,amssymb}
@ -76,7 +77,12 @@
-- (\XC, 0) coordinate (Z)
-- (0, 0);
\tkzDrawLine[thick,dashed](A,C)
\node at ( $ (A)!-0.2!(C) $ ) (helper11) {};
\node at ( $ (A)!0.1!(C) $ ) (helper12) {};
\node at ( $ (A)!0.6!(C) $ ) (helper2) {};
\node at ( $ (C)!-0.2!(A) $ ) (helper3) {};
\tkzDrawLine[thick,dashed](helper12,helper11)
\tkzDrawLine[thick,dashed](helper2, helper3)
\end{tikzpicture}
\end{preview}
\end{document}