尝试使用 插入 TikZ 图形时\addplot
,我收到“未定义的控制序列”。我的代码是:
\documentclass{article}
\usepackage{tikz}
\usepackage{pgfplots}
\pgfplotsset{compat=newest}
\begin{document}
\begin{tikzpicture}[scale=2]
\addplot[only marks] file[x index=0, y index=1]{baba.txt};
\end{tikzpicture}
\end{document}
其中baba.txt
只是简单的表格:
0 1
1 0
1 1
0 0
谁能帮我这个?
答案1
这是你想要的吗?
\documentclass{article}
\usepackage{tikz}
\usepackage{pgfplots}
\pgfplotsset{compat=newest}
\begin{document}
\begin{tikzpicture}[scale=2]
\begin{axis}
\addplot+[only marks] file[x index=0, y index=1]{baba.txt};
\end{axis}
\end{tikzpicture}
\end{document}