Graphics, Figures & Tables ⇒ Tikz mind map library, node connection problems
Tikz mind map library, node connection problems
I am new to tikz libraries and I am experiencing some problems using the mind map library. First of all I built the computer science mind map example which I have attached an image of below.
However, the node connections at the nodes are not the same colors as the nodes themselves.. The previews of this example I have seen so far are different and look better..Here is what the connection is like:
Then I also have a few children that are shared by the same node that I wanted to connect to each. Thus, I used the command '\path (n1c2) to [circle connection bar switch color=from (blue) to (green)] (n1c1c1);' to connect the nodes. The colors were again the same as illustrated above but there was one extra problem: some different color sections (e.g. grey) that could be seen at the connection points, as can be seen from the screenshot below:
I was also wondering if it is possible to remove completely the node's outer border so that only the filled color is present. Here is what I have right now, which in my opinion would look better if the border is completely removed.
Thank you very much for your time, I really appreciate your help! Any responses are welcome!
Best,
-Redwaza
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
Re: Tikz mind map library, node connection problems

Thanks

-
- Posts: 1
- Joined: Sat Jun 06, 2015 4:14 pm
Tikz mind map library, node connection problems
You can alter that with the level distance directive.
Ex:
child { node[font=\bfseries,concept,text width=2.5cm] {Methodology} }% No adjustment on the length of the connector
child[level distance=4cm] { node[font=\bfseries,concept,text width=2.5cm] {Methodology} }% now the length of the connector is 4cm
Re: Tikz mind map library, node connection problems

