
스마트 다이어그램에서 경계선(예: 행성과 위성 주위에 검은색 경계선)을 사용하여 거품을 만들 수 있는 방법이 있는지 궁금합니다. 다음은 내가 시도했지만 아무 소용이 없었던 코드입니다. 도움을 주시면 감사하겠습니다.
\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
잘 작동해요! 정말 감사합니다! 내가 쿼리한 유형의 개요 버블 다이어그램을 얻는 방법에 관심이 있는 사람이 있는 경우 해당 코드는 다음과 같습니다.
\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}