diff options
author | Karl Berry <karl@freefriends.org> | 2013-08-25 21:57:19 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2013-08-25 21:57:19 +0000 |
commit | 6e1716959dcbead4226252da5ee6590ef79c67dc (patch) | |
tree | d2d9e44359663c10677d03adcdb477a5a0ef39ad /Master/texmf-dist/doc/latex/graphviz/README | |
parent | cff40ff1ca6a982d827c23c02df7ae79504d12a3 (diff) |
graphviz (25aug13)
git-svn-id: svn://tug.org/texlive/trunk@31517 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/doc/latex/graphviz/README')
-rw-r--r-- | Master/texmf-dist/doc/latex/graphviz/README | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/Master/texmf-dist/doc/latex/graphviz/README b/Master/texmf-dist/doc/latex/graphviz/README new file mode 100644 index 00000000000..6254ec727d2 --- /dev/null +++ b/Master/texmf-dist/doc/latex/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. + |