绘图总计数器值

绘图总计数器值

我正在尝试让 tikzpicture 和 pgfplots 与 totcount 一起创建以下条形图。

Word 示例

我计算了所有出现的不同评级的次数,\totcounter并且在文本中我能够读取计数:

\total{critCounter}
\total{highCounter}
\total{mediumCounter}
\total{lowCounter}
\total{infoCounter}

但是当我尝试将值加载到图中时,我收到大量错误消息。

\addplot[style={black,fill=red,mark=none}]
        coordinates {(Kritisch,\total{highCount})};

消息Missing number, treated as zero.传到Missing \endcsname inserted.Undefined control sequence.

我猜这归结于编译顺序问题。有人有更好的方法吗?图表应该显示通过文档识别的问题评级,我只是计算并希望将其可视化。

答案1

我应该在这里回答自己。

totcounter包与不兼容pgfplot,我通过使用解决了该问题xassoccnt

定义计数器:\NewTotalDocumentCounter{countername} 像任何其他计数器一样执行步骤:\stepcounter{countername} 读取计数器:\TotalValue{countername}

相关内容