Questions tagged [mindmaps]

{mindmaps} are graphical representations of concepts or ideas, together with other related concepts and annotations. {tikz-pgf} provides a mindmap library for drawing {mindmaps}.

A mindmap is a graphical representation of a concept together with related concepts and annotations. Mindmaps are, essentially, trees, possibly with a few extra edges added, but they are usually drawn in a special way: The root concept is placed in the middle of the page and is drawn as a huge circle, ellipse, or cloud. The related concepts then "leave" this root concept via branch-like tendrils.

enter image description here

\begin{tikzpicture}
  \path[mindmap,concept color=black,text=white]
    node[concept] {Computer Science}
    [clockwise from=0]
    % note that `sibling angle' can only be defined in
    % `level 1 concept/.append style={}'
    child[concept color=green!50!black] {
      node[concept] {practical}
      [clockwise from=90]
      child { node[concept] {algorithms} }
      child { node[concept] {data structures} }
      child { node[concept] {pro\-gramming languages} }
      child { node[concept] {software engineer\-ing} }
    }
    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}

The above was description was taken from the tikz/pgf package documentation.

169 questions
14
votes
1 answer

curved bar in mindmap

Does anyone know how to draw a curved bar in mindmap? Here is my graph and code. I want the straight bars from the blue and red circles to the orange one be replaced by two curved ones like the black lines but with mindmap style and decoration. …
Mohammad
  • 143
8
votes
2 answers

Mindmaps: children of scopes' children, shared children and edge color gradient

I have some doubts regarding mindmaps. I am following the next templates: Scientific interactions Computer science mindmap I do not seem to be able to interchange the 2 codes. The two main problems I am facing are: 1- make child nodes for the…
DaniCee
  • 2,217
4
votes
1 answer

Mind map type that i didnt find out

please help me out to draw this type of mindmap in latex. I have done learning forest but i did not get my output. i have found buble type output. i am using miktex with texlipse.
2
votes
1 answer

Problems with mindmap

I have two mindmaps in the following MWE and have a couple of problems. The mindmaps are almost identical, but some child nodes appear at different positions, in particular Int.2, leaving different space with the right edge of the node, as indicated…
DaniCee
  • 2,217
1
vote
0 answers

How to define "ball" style for mindmap node?

I need to change the style of the concepts in the following mindmap to 3D "ball" style, similar to How to shade mindmap concepts?…
Reza
  • 811
1
vote
0 answers

Mind mapping in Freemind reducing vertical space

Please, I know this may not be the right place. I am learning freemind to dram mind mapping. However, I am getting difficult to arrange the map in such away that it does not leave the gap at the top. I have tried ctrl + drag. Attached is the…
0
votes
0 answers

Mindmap: Common child

Consider the MWE (copied from here): \documentclass[landscape]{article} \usepackage{tikz} \usetikzlibrary{mindmap} \pagestyle{empty} \begin{document} \begin{tikzpicture}[small mindmap, outer sep=0pt, text=black] \begin{scope}[concept…
hola
  • 4,026
  • 3
  • 35
  • 72