子节点的突出显示或发光边框

子节点的突出显示或发光边框

有没有办法突出显示或使子节点的边框发光,如下图所示(使用图形应用程序时会出现变化)?任何帮助都将不胜感激 在此处输入图片描述

答案1

您可以使用circular glow阴影库

\documentclass[tikz]{standalone}
\usetikzlibrary{mindmap,shadows}
\begin{document}
\begin{tikzpicture}[mindmap,text=white,
root concept/.style={concept color=orange},
level 1 concept/.append style=
{every child/.style={concept color=orange}}]
\node [concept] {Root concept}
child[grow=30] {node[concept] {child}}
child[grow=0 ] {node[concept,circular glow={fill=orange!50}] {child}};
\end{tikzpicture}
\end{document}

在此处输入图片描述

相关内容