我知道 TikZ 提供了一个思维导图库。我想知道是否可以*.gif
在每个子项(圆圈)内插入图片而不是写文字。如能提供任何帮助,我将不胜感激。
示例如下:
\documentclass{article}
\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] {Motivation}
[clockwise from=0]
child[concept color=green!50!black] {
node[concept] {practical} }
child[concept color=blue, counterclockwise from=30] {
node[concept,scale=1.2] {applied} }
child[concept color=orange, counterclockwise from=60] {
node[concept] {theoretical} };
\end{tikzpicture}
\end{document}
现在,我想插入一个*.gif
图片,而不是“应用”。