Difference between revisions of "Dot"

From Linuxintro
imported>ThorstenStaerk
imported>ThorstenStaerk
Line 4: Line 4:
  
 
= Mindmap =
 
= Mindmap =
 +
[[image:Mindmap.png|right|thumb|200px|A mindmap created by the program dot (click to enlarge).]]
 
Here's how you create a mindmap with dot:
 
Here's how you create a mindmap with dot:
  

Revision as of 08:27, 26 February 2012

Dot is a program from the graphviz package to draw graphs. It can, among other usages, be used to create MindMaps.

Mindmap created with dot

Mindmap

A mindmap created by the program dot (click to enlarge).

Here's how you create a mindmap with dot:

source.txt

digraph "Wikimap" {
  "OS" -> "OpenSource"
  "OpenSource" -> "Linux"
  "OpenSource" -> "BSD"
  "BSD" -> "NetBSD"
  "BSD" -> "FreeBSD"
}

create the graphical map

$ dot -Tps -o mindmap.ps source.txt

view the graphical map

$ konqueror mindmap.ps