2
0
Fork 0
mirror of https://github.com/MartinThoma/LaTeX-examples.git synced 2025-04-19 11:38:05 +02:00
LaTeX-examples/tikz/center/center.tex
Martin Thoma 7740f0147f Remove trailing spaces
The commands

find . -type f -name '*.md' -exec sed --in-place 's/[[:space:]]\+$//' {} \+

and

find . -type f -name '*.tex' -exec sed --in-place 's/[[:space:]]\+$//' {} \+

were used to do so.
2015-10-14 14:25:34 +02:00

29 lines
813 B
TeX

\documentclass{article}
\usepackage[pdftex,active,tightpage]{preview}
\setlength\PreviewBorder{2mm}
\usepackage{tikz}
\usepackage{tkz-fct}
\usetikzlibrary{shapes.misc}
\usetikzlibrary{shapes, calc, decorations}
\usepackage{amsmath,amssymb}
\begin{document}
\begin{preview}
\begin{tikzpicture}[dot/.style={ thick,
draw=gray,
cross out,
inner sep=0pt,
minimum width=4pt,
minimum height=4pt}]
\draw[->] (3.20,0.13) -- (3.01,0.86);
\draw[->] (1.38,1.12) -- (2.65,1.06);
\draw[->] (3.68,3.38) -- (3.11,1.51);
\draw[->] (4.46,0.43) -- (3.26,0.92);
\draw[->] (2.11,0.15) -- (2.79,0.86);
\node[circle,inner sep=1pt,fill] at (2.97,1.04) {};
\foreach \point in {(2.11,0.15),(4.46,0.43),(3.68,3.38),(1.38,1.12),(3.20,0.13)}{
\node[dot] at \point {};
}
\end{tikzpicture}
\end{preview}
\end{document}