Difference between revisions of "Dot"

From Linuxintro
imported>ThorstenStaerk
imported>ThorstenStaerk
Line 1: Line 1:
Dot is a [[program]] from the [http://www.graphviz.org/ graphviz] [[package]] to draw graphs from the [[command line]]. It can, among other usages, be used to create [[MindMap]]s.
+
Dot is a [[program]] from the [http://www.graphviz.org/ graphviz] [[package]] to draw graphs from the command line. It can, among other usages, be used to create [[MindMap]]s.
  
 
= Mindmap =
 
= Mindmap =
Line 19: Line 19:
  
 
[[Category:Command]]
 
[[Category:Command]]
 +
[[Category:Tool]]

Revision as of 14:51, 14 November 2013

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

Mindmap

A mindmap created by the program dot.

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