使用 pgfplots 的最小工作示例

使用 pgfplots 的最小工作示例

我正在努力使用一个简单愚蠢的 MWE pgfplots。目标只是从外部文件读取和简单绘制数据:

\documentclass[12pt,a4paper]{article}
\usepackage{pgfplots}

\begin{tikzpicture}
\begin{axis}
\addplot table {data.dat};
\end{axis}
\end{tikzpicture}

位于data.dat同一文件夹中,其结构最为简单:

1
2
3
4
5
6

我得到:!包 pgfplots 错误:抱歉,表 'data.dat' 中请求的列号 '1' 不存在!?请确认您使用了正确的索引 0 <= i < N。

问题是什么?

相关内容