绘制姓名轮盘

绘制姓名轮盘

我怎样才能在 LaTeX 中绘制这样的名称轮?

在此处输入图片描述

答案1

以下答案使用轮图包,是我写的。

颜色是使用键通过列表定义的slices style{list}

在密钥中wheel data style我们使用\WClistcolors引用给定密钥的列表中的项目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}

相关内容