summaryrefslogtreecommitdiff
path: root/macros/latex/contrib/dottex/example.tex
blob: a5a861f263d0ed43a37a5fa0d1610117c0e62579 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
\documentclass[a4paper]{article}

\usepackage[pdf]{dottex}

\begin{document}

\begin{dotpic}[width=.5\textwidth]
	a -> b;
	a -> c;
	b -> d;
	d -> a;
\end{dotpic}

\begin{neatopic}
	a -- b;
	b -- c;
	a -- g;
	e -- f;
	g -- c;
\end{neatopic}

\end{document}