~ubuntu-branches/ubuntu/natty/dot2tex/natty

« back to all changes in this revision

Viewing changes to doc/docgraphs/tmp.dot

  • Committer: Bazaar Package Importer
  • Author(s): Peter Collingbourne
  • Date: 2010-02-10 22:35:17 UTC
  • mfrom: (1.1.11 upstream) (4.1.5 sid)
  • Revision ID: james.westby@ubuntu.com-20100210223517-sdy029j8s2h2czzo
Tags: 2.8.7+repack-1
* New upstream release
* debian/control: new Standards-Version
* debian/rules: introduced a get-orig-source rule to repack the
  tarball because of bad permissions
* debian/doc-base: added
* debian/copyright: updated year and license information

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