dot2texi – Create graphs within LaTeX using the dot2tex tool
The dot2texi package allows you to embed graphs in the DOT graph description language in your LaTeX documents. The dot2tex tool is used to invoke Graphviz for graph layout, and to transform the output from Graphviz to LaTeX code. The generated code relies on the TikZ and PGF package or the PSTricks package. The process is automated if shell escape is enabled.
Sources | /macros/latex/contrib/dot2texi |
Documentation | |
Version | 3.0 |
Licenses | GNU General Public License |
Copyright | 2007–2008 Kjell Magne Fauske |
Maintainer | Kjell Magne Fauske |
Contained in | TeX Live as dot2texi MiKTeX as dot2texi |
Topics | Foreign import Graphics |
Download the contents of this package in one zip archive (274.0k).
Announcements
- 2012-05-08 CTAN Update: dot2texi
- 2007-12-10 CTAN package update: dot2texi
- 2007-11-07 CTAN has a new package: dot2texi
Suggestions
Maybe you are interested in the following packages as well.
Meine Bewertung
Nur registrierte und eingeloggte Mitglieder können eine Bewertung abgeben. Bitte Melde dich an um mit abzustimmen.
Community Comments
when node shape is record, this package cannot work normally. here is a test.gv to reproduce:
```{.gv} digraph G{ node[shape = record]; lba[label = "<0>0| <1>1| <2>2| <3>3| <4>4"]; pba[label = "<0>0| <1>1| <2>2| <3>3| <4>4"]; lba:0 -> pba:0; lba:1 -> pba:2; lba:2 -> pba:4; lba:3 -> pba:1; lba:4 -> pba:3; } ```