答案1
即使不完全准确,这样的事情也可以作为一个起点。
\documentclass[tikz,border=3.14mm]{standalone}
\usetikzlibrary{positioning}
\begin{document}
\tikzset{txtnode/.style={text width=3cm,outer sep=2pt}}
\begin{tikzpicture}[font=\sffamily]
\node (A) {Fox types};
\node[below left= 2cm and 2cm of A,txtnode,anchor=north east] (B) {Brown Fox:\\Popular in Howard County, likes to eat Cherries};
\node[below = 2 cm of A,txtnode,anchor=north] (C) {Black Fox:\\Lives in Yorkshire, can perform magic spells};
\node[below right= 2cm and 2cm of A,txtnode,anchor=north west] (D) {Red Fox:\\Steals from chicken coop};
\foreach \n in {B,C,D} \draw[line width=1pt,->] (A) -- (\n);
\end{tikzpicture}
\end{document}