Dot

From Linuxintro
Revision as of 08:22, 26 February 2012 by imported>ThorstenStaerk (Created page with "Dot is a program from the graphviz package to draw graphs. It can, among other usages, be used to create MindMaps. = Mindmap = Here's how you create a mindmap with d...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

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

Mindmap

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