I want to combine two different \tikzset. The first one is the default one. For instance
% Author: Till Tantau
% Source: The PGF/TikZ manual
\documentclass{standalone}
\usepackage{tikz}
\usetikzlibrary{mindmap,trees}
\begin{document}
\pagestyle{empty}
\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] {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}\end{document}
The second one is its variation found here How to draw only the border for the nodes in TikZ Mindmap?
\documentclass{standalone}
\usepackage{tikz}
\usetikzlibrary{mindmap,trees}
\tikzset{concept/.append style={fill={none}}}
\begin{document}
\pagestyle{empty}
\begin{tikzpicture}
\path[mindmap,concept color=black,text=black]
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] {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}
\end{document}
which just draws the border.
Say that I want to have a single document (for instance a beamer presentation; one slide with the mind map with colors, another slide with the mind map with just the border), how can I modify locally \tikzset? Thanks a lot!




tikzpictures in two slides. – subham soni Apr 28 '19 at 13:57\tikzset? – Dimitris Apr 28 '19 at 14:01\tikzsetis like a template. It helps in reducing code. Your requirement is to have 2 different mindmaps in two slides. So twotikzpictures with different options should be sufficient. I don't understand why you want to modify locally. – subham soni Apr 28 '19 at 14:05concept/.append style={fill={none}}? Sorry but I cannot figure out. – Dimitris Apr 28 '19 at 14:09