summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/doc/latex/adigraph/adigraph_working_test.tex
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2018-03-11 20:26:48 +0000
committerKarl Berry <karl@freefriends.org>2018-03-11 20:26:48 +0000
commitecd38b6aed911b2332d01f45bb01dee5d0a9bde7 (patch)
treefdcd5d4d96b0041ae1e02b4e80293d7051bbee2a /Master/texmf-dist/doc/latex/adigraph/adigraph_working_test.tex
parent031e05223ac38bfc9129c658004d4222f4a26209 (diff)
adigraph (10mar18)
git-svn-id: svn://tug.org/texlive/trunk@46922 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/doc/latex/adigraph/adigraph_working_test.tex')
-rw-r--r--Master/texmf-dist/doc/latex/adigraph/adigraph_working_test.tex75
1 files changed, 75 insertions, 0 deletions
diff --git a/Master/texmf-dist/doc/latex/adigraph/adigraph_working_test.tex b/Master/texmf-dist/doc/latex/adigraph/adigraph_working_test.tex
new file mode 100644
index 00000000000..ac4c40406e9
--- /dev/null
+++ b/Master/texmf-dist/doc/latex/adigraph/adigraph_working_test.tex
@@ -0,0 +1,75 @@
+\documentclass{report}
+
+\usepackage{adigraph}
+
+\title{Adigraph, V1.3, small working test}
+\author{Luca Cappelletti}
+\date{March 2018}
+
+\begin{document}
+\maketitle
+\NewAdigraph{myAdigraph}{
+ s:0,0;
+ 1:2,2;
+ 3:2,-2;
+ 2:6,2;
+ 4:6,-2;
+ t:8,0;
+}{
+ s,1:25;
+ s,3:25;
+ 3,4:25;
+ 1,2:35;
+ 2,t:20;
+ 4,t:30;
+ 3,1:10;
+ 4,2:10;
+ 2,3:15::near start;
+ 4,1:5::near start;
+}
+
+\myAdigraph{}
+
+
+\myAdigraph{
+ s,3,4,2,t:5;
+}
+
+\myAdigraph{}{
+ 2,t,red;
+ 3,4,blue;
+}
+
+\NewAdigraph{mySecondAdigraph}{
+ s:3;
+ 1:3;
+ 3:3;
+ 2:3;
+ 4:3;
+ t:3;
+}{
+ s,1:25;
+ s,3:25;
+ 3,4:25;
+ 1,2:35;
+ 2,t:20;
+ 4,t:30;
+ 3,1:10;
+ 4,2:10;
+ 2,3:15::near start;
+ 4,1:5::near start;
+}
+
+\mySecondAdigraph{}
+
+
+\mySecondAdigraph{
+ s,3,4,2,t:5;
+}
+
+\mySecondAdigraph{}{
+ 2,t,red;
+ 3,4,blue;
+}
+
+\end{document} \ No newline at end of file