emacs-orgmode
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Orgmode] MindMap using tikz/pgf (was: A MindMap export would be awesome


From: Leo
Subject: [Orgmode] MindMap using tikz/pgf (was: A MindMap export would be awesome)
Date: Sat, 01 Aug 2009 22:22:37 +0100
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/23.1.50 (darwin)

Hi all,

MindMap looks like an effective way to represent certain knowledge
structure. I wonder if export a substree or an org file to mindmap may
be made possible through tikz/pgf. Here's an example of a mindmap done
in tikz: http://imagebin.org/57996

---- example TeX ----
\documentclass{article}
\usepackage{tikz}
\usetikzlibrary{mindmap}

\begin{document}
\begin{tikzpicture}
  \path[mindmap,concept color=black,text=white]
  node[concept] {Computer Science}
  [clockwise from=0]
  child[concept color=green!50!black] {
    node[concept] {practical}
    [clockwise from=90]
    child { node[concept] {algorithms} }
    child { node[concept] {data structures} }
    child { node[concept] {programming languages} }
    child { node[concept] {software engineering} }
  }
  child[concept color=blue] {
    node[concept] {applied}
    [clockwise from=-30]
    child { node[concept] {databases} }
    child { node[concept] {WWW} }
  }
  child[concept color=red] { node[concept] {technical} }
  child[concept color=orange] { node[concept] {theoretical} };
\end{tikzpicture}
\end{document}


-- 
Emacs uptime: 6 days, 1 hour, 34 minutes, 22 seconds





reply via email to

[Prev in Thread] Current Thread [Next in Thread]