如何使用智能图表将卫星从行星上分散开来

如何使用智能图表将卫星从行星上分散开来

问题:

我怎样才能将卫星推出去以使它们不重叠?

MWE/代码:

\documentclass{article}
\usepackage{smartdiagram}
\begin{document}
\begin{center}
    \smartdiagramset{
        bubble node font=\footnotesize,
        bubble center node color=red!15,
        planet font=\footnotesize, 
        % set color list={blue!25,blue!25,blue!25,blue!25,blue!25,blue!25},
        uniform color list=blue!60 for 8 items,
        border color=none,
        %planet text width=10cm,
        planet size=4.0cm, 
        satellite size=1.0cm, 
        }
    \tikzset{bubble node/.append style={draw=none}}
    \smartdiagram[bubble diagram]{
        Dante,
        Ultimo,
        Brooklyn II,
        IP Core,
        Broadway,
        HC,
        PCIe-R,
        AV,
        Adaptor\\Modules
        }
\end{center}
\end{document}

输出:

在此处输入图片描述

答案1

卫星与中心之间的距离存储在中distance center/other bubbles

\documentclass{article}
\usepackage{smartdiagram}
\begin{document}
\begin{center}
    \smartdiagramset{
        bubble node font=\footnotesize,
        bubble center node color=red!15,
        planet font=\footnotesize, 
        % set color list={blue!25,blue!25,blue!25,blue!25,blue!25,blue!25},
        uniform color list=blue!60 for 8 items,
        border color=none,
        %planet text width=10cm,
        planet size=4.0cm, 
        satellite size=1.0cm, 
         distance center/other bubbles=1.4cm
        }
    \tikzset{bubble node/.append style={draw=none}}
    \smartdiagram[bubble diagram]{
        Dante,
        Ultimo,
        Brooklyn II,
        IP Core,
        Broadway,
        HC,
        PCIe-R,
        AV,
        Adaptor\\Modules
        }
\end{center}
\end{document}

在此处输入图片描述

或者星座图。

\documentclass{article}
\usepackage{smartdiagram}
\begin{document}
\begin{center}
    \smartdiagramset{
        satellite font =\footnotesize,
        planet color=red!15,
        planet font=\footnotesize, 
        % set color list={blue!25,blue!25,blue!25,blue!25,blue!25,blue!25},
        uniform color list=blue!60 for 8 items,
        border color=none,
        planet size=4.0cm, 
        distance planet-satellite=4cm
        }
    %\tikzset{bubble node/.append style={draw=none}}
    \smartdiagram[constellation diagram]{
        Dante,
        Ultimo,
        Brooklyn II,
        IP Core,
        Broadway,
        HC,
        PCIe-R,
        AV,
        Adaptor\\Modules
        }
\end{center}

\end{document}

在此处输入图片描述

相关内容