File: distances.dot

package info (click to toggle)
dot2tex 2.8.2-1
  • links: PTS, VCS
  • area: main
  • in suites: lenny
  • size: 968 kB
  • ctags: 337
  • sloc: python: 3,057; makefile: 4
file content (25 lines) | stat: -rw-r--r-- 583 bytes parent folder | download | duplicates (3)
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
/* 
:Title: Distances
:Tags: TikZ, tikzedgelabels

Generated with::

	$ circo -Txdot distances.dot | dot2tex --crop --tikzedgelabels -ftikz -tmath -s > distances.tex

*/
graph G {
	node [shape=circle,fixedsize = true,width=0.1,style="fill=blue!20"];
	edge [lblstyle="fill=black!10,inner sep=1pt,sloped"];
	K -- F [label="120"];
	H -- S [label="650"];
	H -- M [label="780"];
	D -- B [label="490"];
	D -- M [label="600"];
	B -- M [label="580"];
	H -- N [label="600"];
	F -- H [label="490"];
	S -- B [label="630"];
	S -- N [label="210"];
	S -- M [label="230"];
	F --M [label="100"];  
}