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

added images

This commit is contained in:
Martin Thoma 2013-11-28 22:29:27 +01:00
parent 0b5f7dd41d
commit f2a0df1de7
12 changed files with 168 additions and 5 deletions

View file

@ -0,0 +1,19 @@
\documentclass[varwidth=true, border=2pt]{standalone}
\usepackage{tikz}
\usetikzlibrary{calc,shadings}
\usepackage{pgfplots}
\begin{document}
\begin{tikzpicture}
\tikzstyle{point}=[circle,thick,draw=black,fill=black,inner sep=0pt,minimum width=4pt,minimum height=4pt]
\node (a)[point,label={[label distance=0cm]210:$a$}] at (210:1cm) {};
\node (b)[point,label={[label distance=0cm]-45:$b$}] at (330:1cm) {};
\node (c)[point,label={[label distance=0cm]90:$c$}] at (90:1cm) {};
\node (sigma) at (0,0) {$\sigma$};
\draw[->, very thick] (a) edge node[label=below:$e_3$] {} (b);
\draw[->, very thick] (b) edge node[label=right:$e_1$] {} (c);
\draw[->, very thick] (c) edge node[label=left:$e_2$] {} (a);
\end{tikzpicture}
\end{document}