~ubuntu-branches/ubuntu/raring/dot2tex/raring

« back to all changes in this revision

Viewing changes to doc/docgraphs/tmp.dot

  • Committer: Bazaar Package Importer
  • Author(s): Peter Collingbourne
  • Date: 2007-10-05 16:41:28 UTC
  • mfrom: (1.1.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20071005164128-gn1kt6i3ug0nystm
Tags: 2.6.0-1
* New upstream release
* debian/copyright: changed years to 2007
* debian/dot2tex.1: documented new command line options
* debian/README.Debian: removed as upstream now calls the script
  dot2tex
* debian/rules: no longer rename script as upstream now calls it
  dot2tex
* dot2tex/dot2tex: added shebang
* dot2tex/dot2tex.py: removed shebang

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
digraph G {
 
2
"a_1" [texlbl="$\frac{\gamma}{2x^2+y^3}$"];
 
3
"a_1";
 
4
"a_2";
 
5
"a_1" -> "a_2";
 
6
"a_3";
 
7
"a_2" -> "a_3";
 
8
"a_3" -> "a_1";
 
9
node [texmode=math];
 
10
"b_1" [texmode=math];
 
11
"a_1" -> "b_1";
 
12
"b_2" [texmode=math];
 
13
"b_1" -> "b_2";
 
14
"b_2" -> "a_3";
 
15
"b_1" [label="\\frac{\\gamma}{x^2}", texmode=math];
 
16
node [texmode=verbatim];
 
17
"b_4" [label="\\beta", texmode=verbatim];
 
18
"b_4" [texmode=verbatim];
 
19
"a_3" -> "b_4";
 
20
"b_4" -> "a_1";
 
21
"a_3" [label=" ", width="0.75", fixedsize=true, height="0.5", texlbl=""];
 
22
"a_2" [label=" ", width="0.75", fixedsize=true, height="0.5", texlbl=""];
 
23
"a_1" [label=" ", width="0.75", fixedsize=true, height="0.5", texlbl=""];
 
24
"b_1" [label=" ", width="0.75", fixedsize=true, height="0.5", texlbl=""];
 
25
"b_2" [label=" ", width="0.75", fixedsize=true, height="0.5", texlbl=""];
 
26
"b_4" [label=" ", width="0.75", fixedsize=true, height="0.5", texlbl=""];
 
27
}
 
28