summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/doc/latex/dot2texi/examples/d2tpstexamples.tex
diff options
context:
space:
mode:
Diffstat (limited to 'Master/texmf-dist/doc/latex/dot2texi/examples/d2tpstexamples.tex')
-rw-r--r--Master/texmf-dist/doc/latex/dot2texi/examples/d2tpstexamples.tex44
1 files changed, 44 insertions, 0 deletions
diff --git a/Master/texmf-dist/doc/latex/dot2texi/examples/d2tpstexamples.tex b/Master/texmf-dist/doc/latex/dot2texi/examples/d2tpstexamples.tex
new file mode 100644
index 00000000000..bf413502c78
--- /dev/null
+++ b/Master/texmf-dist/doc/latex/dot2texi/examples/d2tpstexamples.tex
@@ -0,0 +1,44 @@
+\documentclass[a4paper]{article}
+\usepackage{pstricks}
+\usepackage{pstricks-add}
+
+\usepackage[pstricks]{dot2texi}
+
+\begin{document}
+
+\begin{dot2tex}[mathmode,autosize]
+digraph G{
+ d2toptions="--nominsize";
+ a -> b;
+ a -> c;
+ b -> d;
+ d -> a;
+}
+\end{dot2tex}
+
+\begin{dot2tex}[dot]
+graph G {
+ node [shape=circle];
+ 1 -- 2;
+ 1 -- 5;
+ 2 -- 5;
+ 2 -- 4;
+ 2 -- 3;
+ 3 -- 4;
+}
+\end{dot2tex}
+
+\begin{dot2tex}[circo]
+digraph G {
+ graph [mindist=0.5];
+ node [texmode="math", fixedsize=true, shape=circle, width=0.4];
+ c -> n_1 [style="arrows=->"];
+ c -> n_2 [style="arrows=->>"];
+ c -> n_3 [style="arrows=-<"];
+ c -> n_4 [style="arrows=-*"];
+ c -> n_5 [style="arrows=-{]}"];
+ c -> n_6 [style="arrows=-o"];
+ c -> n_7 [style="arrows=-H"];
+}
+\end{dot2tex}
+\end{document}