我正在尝试创建一个带有条形的图表。条形之间不应有任何分隔,除了每个第 n 条条形之后的分隔。
换句话说,条形图应以 n 条为一组显示,各组之间没有分隔。各组之间应有分隔。
这些条来自一个\addplot
命令。
梅威瑟:
\begin{tikzpicture}
\begin{axis}
\addplot coordinates {
(1,5) (2,10) (3,13) (4,18) (5,21) (6,25) (7,30) (8,50) (9,70)
};
\end{axis}
\end{tikzpicture}