From mboxrd@z Thu Jan 1 00:00:00 1970 From: Leo Subject: MindMap using tikz/pgf (was: A MindMap export would be awesome) Date: Sat, 01 Aug 2009 22:22:37 +0100 Message-ID: References: <874otonv8m.fsf@thinkpad.tsdh.de> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1MXM2d-0002uz-8L for emacs-orgmode@gnu.org; Sat, 01 Aug 2009 17:22:59 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1MXM2X-0002uJ-Aq for emacs-orgmode@gnu.org; Sat, 01 Aug 2009 17:22:57 -0400 Received: from [199.232.76.173] (port=56939 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MXM2X-0002uG-0D for emacs-orgmode@gnu.org; Sat, 01 Aug 2009 17:22:53 -0400 Received: from main.gmane.org ([80.91.229.2]:57740 helo=ciao.gmane.org) by monty-python.gnu.org with esmtps (TLS-1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1MXM2W-0008V2-IA for emacs-orgmode@gnu.org; Sat, 01 Aug 2009 17:22:52 -0400 Received: from list by ciao.gmane.org with local (Exim 4.43) id 1MXM2R-00020d-No for emacs-orgmode@gnu.org; Sat, 01 Aug 2009 21:22:47 +0000 Received: from sl392.st-edmunds.cam.ac.uk ([131.111.223.202]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Sat, 01 Aug 2009 21:22:47 +0000 Received: from sdl.web by sl392.st-edmunds.cam.ac.uk with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Sat, 01 Aug 2009 21:22:47 +0000 List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: emacs-orgmode@gnu.org 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