I've got the following code with Latex smartdiagram package that produces the attached bubble diagram.
But I would like to be able to have child satellites in it (see prototype image below).
- Is it possible to do so with
smartdiagram? If not, how could I replicate this directly withtikzor or similar?
Thanks!
\documentclass[a4paper]{article}
\usepackage{smartdiagram}
\begin{document}
\smartdiagramset{
bubble center node font = \footnotesize,
bubble node font = \footnotesize,
% specifies the minimum size of the bubble center node
bubble center node size = 0.1cm,
% specifies the minimum size of the bubbles
bubble node size = 0.9cm,
% specifies which is the distance among the bubble center node and the other bubbles
distance center/other bubbles = 0.5cm,
% sets the distance from the text to the border of the bubble center node
%distance text center bubble = 0.5cm,
}
\smartdiagram[bubble diagram]{
\normalsize{Interest} \\ \normalsize{Areas},
\textbf{DLTs/} \\ \textbf{Blockchain,} \\ \textbf{Web3},
\textbf{Big/Fast Data} \\ \textbf{\& Streaming},
\textbf{Artificial} \\ \textbf{Intelligence},
\textbf{Functional} \\ \textbf{Programming}
}
\end{document}
What I have vs. what I want
What I tried
I tried replacing the satellite Functional Programming by a new diagram, with the aim of the satellite to become a new planet, so can have more satellites (the children). But the result was a mess. I mean:
\textbf{Functional} \\ \textbf{Programming} to
\smartdiagram[bubble diagram]{ ... }




