ichaida / GraphViz-sty

graphviz.sty - A library for using GraphViz dot files in LaTeX

Home Page:http://mark.aufflick.com/blog/2007/03/25/embedding-graphviz-in-latex-documents

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

graphviz.sty - A LaTeX library for GraphViz dot

graphviz.sty lets you include GraphViz dot files directly in your LaTeX source.

graphviz.sty is currently only compatible with pdflatex.

Prerequisites

You must have the GraphViz dot program in your path.

Installation

Copy graphviz.sty to your texmf directory.

On Mac OS X with the MacTeX distribution:

  1. Make folder ~/Library/texmf/tex/latex if it doesn't already exist.
  2. Drag and drop graphviz.sty to that folder.

Or for the Terminally ill:

$ mkdir -p ~/Library/texmf/tex/latex
$ cp graphviz.sty ~/Library/texmf/tex/latex

Usage

Add the following lines to your preamble:

\usepackage[pdftex]{graphicx}
\usepackage{graphviz}

To include GraphViz dot syntax directly in your LaTeX source:

\digraph[scale=0.5]{MyGraph}{rankdir=LR; a->b; b->c}

Parameters to \digraph:

  1. parameters for \includegraphics (optional; default value is "scale=1")
  2. name of the digraph
  3. body of the digraph

To include an external GraphViz dot file named mydotfile.dot:

\includedot[scale=0.5]{mydotfile}

Parameters to \includedot:

  1. parameters for \includegraphics (optional; default value is "scale=1")
  2. name of the dot file (w/out file extension, which must be ".dot")

You must use the -shell-escape option to pdflatex:

$ pdflatex -shell-escape mydoc.tex

Using regular LaTeX

To modify this command for regular latex, replace all .pdf with .ps, and the command becomes simply:

dot -Tps #2.dot

Other projects

Graphvizzz on Google Code includes support for graph as well as digraph.

Contributors

graphviz.sty is based on graphviz.tex by Derek Rayside (2003).

2006-03-25:

graphviz.sty by Mark Aufflick

Website: http://mark.aufflick.com/

2011-02-21:

Modified by Mike Prentice to use PDF output directly from dot.

Added includedot command.

About

graphviz.sty - A library for using GraphViz dot files in LaTeX

http://mark.aufflick.com/blog/2007/03/25/embedding-graphviz-in-latex-documents


Languages

Language:TeX 100.0%