我正在尝试向 x 轴添加自定义间隔。下图中,这就是我想要实现的(来自 Excel)。
。
Latex 正在设置自己的间隔,如下所示:
我的图表定义如下(我省略了坐标和标签):
\begin{figure}[p]
\centering
\begin{tikzpicture}
\begin{axis}[
ylabel near ticks,
scale only axis,
x dir=reverse,
width=12cm]
\addplot [mark=none] coordinates {
};
\end{figure}
我怎样才能实现这个目标?