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

\usepackage{dottex}

\begin{document}

\def\dotwidth{.5\textwidth}
\begin{dotpic}
	a -> b;
	a -> c;
	b -> d;
	d -> a;
\end{dotpic}

\def\dotwidth{.8\textwidth}
\begin{neatopic}
	a -- b;
	b -- c;
	a -- g;
	e -- f;
	g -- c;
\end{neatopic}

\end{document}