mirror of
https://github.com/MartinThoma/LaTeX-examples.git
synced 2025-04-26 06:48:04 +02:00
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.
26 lines
651 B
TeX
26 lines
651 B
TeX
\documentclass[varwidth=true, border=2pt]{standalone}
|
|
\usepackage{tikz}
|
|
\usetikzlibrary{shapes, calc, shapes, arrows}
|
|
\usepackage{amsmath,amssymb}
|
|
|
|
\usepackage{xcolor}
|
|
\definecolor{xvectorcolor}{HTML}{77933C}
|
|
|
|
\begin{document}
|
|
\begin{tikzpicture}
|
|
\path (160:1) coordinate (X);
|
|
\path ( 20:1) coordinate (Y);
|
|
\path ( 80:1) coordinate (Z);
|
|
|
|
\draw (0,0) circle (1);
|
|
|
|
\fill[color=blue] (X) circle (2pt);
|
|
\draw[blue] (X) node [right] {$x$};
|
|
|
|
\fill[color=blue] (Y) circle (2pt);
|
|
\draw[blue] (Y) node [left] {$y$};
|
|
|
|
\fill[color=red] (Z) circle (2pt);
|
|
\draw[red] (Z) node [below] {$z$};
|
|
\end{tikzpicture}
|
|
\end{document}
|