summaryrefslogtreecommitdiff
path: root/macros/latex/contrib/graphviz/README
diff options
context:
space:
mode:
authorNorbert Preining <norbert@preining.info>2019-09-02 13:46:59 +0900
committerNorbert Preining <norbert@preining.info>2019-09-02 13:46:59 +0900
commite0c6872cf40896c7be36b11dcc744620f10adf1d (patch)
tree60335e10d2f4354b0674ec22d7b53f0f8abee672 /macros/latex/contrib/graphviz/README
Initial commit
Diffstat (limited to 'macros/latex/contrib/graphviz/README')
-rw-r--r--macros/latex/contrib/graphviz/README23
1 files changed, 23 insertions, 0 deletions
diff --git a/macros/latex/contrib/graphviz/README b/macros/latex/contrib/graphviz/README
new file mode 100644
index 0000000000..6254ec727d
--- /dev/null
+++ b/macros/latex/contrib/graphviz/README
@@ -0,0 +1,23 @@
+This package has a little macro that lets you write directed graphs in
+graphviz/dot syntax inside your LaTeX files, and have the rendered
+version automatically included. For example:
+
+ \digraph[scale=0.5]{abc}{rankdir=LR; a->b; b->c}
+
+Will result in three ovals in a row, labeled "a", "b", and "c",
+respectively. There are some details and known limitations described
+in the documentation.
+
+
+Distributed files include:
+
+ README -- this file
+ graphviz.pdf -- pre-compiled documentation
+ graphviz.dtx -- full source (generates .sty and .dvi/.pdf)
+ graphviz.ins -- used to extract .sty from .dtx
+ Makefile -- may be used to generate .sty and .pdf
+
+
+Thanks to Scott Pakin for writing the tutorial on how to create .dtx
+and .ins files.
+