我正在使用 2.0 版轮图包。这种图的描述可以放在轮图外面 ( data
),轮图上 ( wheel data
) 或轮图上的曲线部分 ( arc data
)。
使用前两个选项,我也可以通过 使文本变为粗体textbf
,但是当我使用它arc data
(这是所需的选项)时,编译文档永远不会停止。
平均能量损失
\documentclass{scrbook}
\usepackage{tikz}
\usetikzlibrary{decorations.text}
\usepackage{wheelchart}
\begin{document}
\begin{tikzpicture}
\wheelchart[
data = ,
%data = \textbf{\WCvarC}, % This works (but wrong location)
%wheel data = \textbf{\WCvarC}, % This works (but wrong location)
arc data = \WCvarC, % This works (but not bold)
% arc data = \textbf{\WCvarC}, % This does not work
]{
1/red/Text,
2/green/More Text,
3/yellow/Even More Text
}
\end{tikzpicture}
\end{document}
答案1
该包wheelchart
(我编写的)加载了该包,tikz
因此\usepackage{tikz}
被删除。
可以使用键将键中的文本arc data
变为粗体。|\bfseries|
arc data
\documentclass[border=6pt]{standalone}
\usepackage{wheelchart}
\usetikzlibrary{decorations.text}
\begin{document}
\begin{tikzpicture}
\wheelchart[
arc data=|\bfseries|\WCvarC,
data={}
]{%
1/red/Text,
2/green/More Text,
3/yellow/Even More Text%
}
\end{tikzpicture}
\end{document}