
スマートダイアグラムで、惑星と衛星の両方を囲む黒い境界線など、境界線付きのバブルを作成する方法はないかと思っています。試してみたコードは次のとおりですが、うまくいきませんでした。どなたか助けていただければ幸いです。
\documentclass[11 pt, a4paper]{article}
\usepackage{smartdiagram}
\begin{document}
\smartdiagramset{border color = black,
uniform color list=blue!30 for 8 items,
bubble center node color = blue!50,
bubble center node size=5cm,
bubble node size=3cm
}
\smartdiagram[bubble diagram]{A,
B, C, D, E, F, G, H, I}
\end{document}
答え1
はい。
\documentclass[tikz,border=3.14mm]{standalone}
\usepackage{smartdiagram}
\begin{document}
\smartdiagramset{border color = black,
uniform color list=blue!30 for 8 items,
bubble center node color = blue!50,
bubble center node size=5cm,
bubble node size=3cm
}
\tikzset{bubble node/.append style={draw=black}}
\smartdiagram[bubble diagram]{A,
B, C, D, E, F, G, H, I}
\end{document}
答え2
うまくいきました! ありがとうございます! 私が問い合わせていたタイプの a/w バブル ダイアグラムを取得する方法に興味のある方のために、そのコードを次に示します。
\documentclass[tikz,border=3.14mm]{standalone}
\usepackage{smartdiagram}
\begin{document}
\smartdiagramset{border color = black,
uniform color list=blue!30 for 8 items,
bubble center node color = none,
bubble fill opacity=0,
bubble center node size=5cm,
bubble node size=3cm
}
\tikzset{bubble center node/.append style={draw=black, thin},
bubble node/.append style={
draw=black, thin}
}
\smartdiagram[bubble diagram]{A,
B, C, D, E, F, G, H, I}
\end{document}