我对 pgfplots 和 latex 还不太熟悉,在 pgfplots 中连接点时遇到了一些困难。
我有一堆点,希望 pgfplots 将每个点连接到它们旁边的点。得到一条围绕所有点的线。这是我到目前为止的代码:
\documentclass {article}
\usepackage{pgfplots}
\usepackage{pgfplotstable}
\pgfplotsset{compat=1.5}
\begin{document}
\begin{tikzpicture}
\begin{axis} [
xmin=0,
title={test},
grid=major,
width=10cm,
]
\addplot table [
col sep=semicolon,
mark=+
]
{data.dat};
\end{axis}
\end{tikzpicture}
\end{document}
有谁能帮助我吗?