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
NEW: TikZ book now 40% off at Amazon.com for a short time.
And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p
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

