1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73
|
\documentclass[11pt]{article}
%\usepackage{graphicx}
\usepackage{newtxtext}
\usepackage{xcolor}
\usepackage[]{hyperref}
\usepackage[cmintegrals,cmbraces]{newtxmath} % times roman, the classic
\hypersetup{
colorlinks = true, %Colours links instead of ugly boxes
urlcolor = {blue!80!black}, %Colour for external hyperlinks
linkcolor = {blue!80!black}, %Colour of internal links
citecolor = red %Colour of citations
}
\usepackage{url}
%\addtolength{\oddsidemargin}{-0.5in}
%\addtolength{\evensidemargin}{-0.5in}
%\addtolength{\textheight}{2.0in}
%\addtolength{\topmargin}{-0.75in}
\addtolength{\topmargin}{-0.75in}
\addtolength{\textheight}{1.5in}
\addtolength{\oddsidemargin}{-0.75in}
\addtolength{\evensidemargin}{-0.75in}
\addtolength{\textwidth}{1.5in}
\pagestyle{myheadings}
\def\dot{{\it dot}}
\def\DOT{{\it DOT}}
\def\neato{{\it neato}}
\def\fdp{{\it fdp}}
\def\sfdp{{\it sfdp}}
\def\twopi{{\it twopi}}
\def\circo{{\it circo}}
\def\gviz{{\it Graphviz}}
\def\graph{{\tt cgraph}}
\def\pack{{\tt pack}}
\def\gvc{{\tt GVC\_t}}
\newcommand{\lastedited}{17 February 2013}
\date{\today}
\newcommand{\mymark}{\gviz{} Library Manual, \today \hfil }
\markboth{\mymark}{\mymark}
\begin{document}
\bibliographystyle{alpha}
\author{Emden R. Gansner}
\title{Using \gviz\ as a Library \\
(cgraph version)}
\maketitle
\newpage
\tableofcontents
\newpage
\input{intro}
\input{basic}
\input{layouts}
\input{drivers}
\input{codegen}
\input{plugins}
\input{unconnect}
%\input{overlap}
%\input{paths}
\clearpage
\bibliography{graphdraw}
\appendix
\clearpage
\input{build}
\input{samples}
\input{types}
\end{document}
|