繪製姓名輪

繪製姓名輪

如何在 LaTeX 中繪製這樣的名字輪?

在此輸入影像描述

答案1

下面的答案使用輪圖包,是我寫的。

顏色是使用 鍵透過列表定義的slices style{list}

在 key 中,wheel data style我們使用\WClistcolorswhich 來指涉給 key 的清單中的項目WClistcolors

在此輸入影像描述

\documentclass[border=6pt]{standalone}
\usepackage{wheelchart}
\begin{document}
\begin{tikzpicture}
\sffamily
\wheelchart[
  data=,
  radius={0.5}{3},
  slices style{list}={yellow,red,blue,green},
  start angle=40,
  value=1,
  WClistcolors={black,white,white,black},
  wheel data=\WCvarA,
  wheel data style={rotate=\WCmidangle,\WClistcolors}
]{%
  Hanna,
  Gabriel,
  Fatima,
  Eric,
  Diya,
  Beatriz,
  Ali%
}
\end{tikzpicture}
\end{document}

相關內容