基本上,我有一个 tikzpicture,我想在这张图片中包含 36 个节点。目前,我知道包含它们的唯一方法是写
\filldraw[blue] (3.8,3.6) circle (1pt) node[anchor=west]{};
我真的不想对所有 36 个节点都这样做。我在 txt 文件中保存了 36 个节点的坐标,那么有没有办法读取它们并自动绘制它们?我不想将点相互连接,所以这不是路径或线图。
这是如何在 txt 文件中写入点的示例
0.1
.1 0
.5 0.5
0.4 .9等等
我试过这样做,但没有成功
\foreach \x \y in table {GPs.txt}
\draw[blue] (\x,\y) circle (1pt) node[anchor=west]{};
这就是我生成图片的方式
\documentclass[margin=5mm]{standalone}
\usepackage[utf8]{inputenc}
% TikZ
\usepackage{tikz}
\usetikzlibrary{patterns}
\usetikzlibrary{external}
% Pgfplots
\usepackage{pgfplots}
\pgfplotsset{compat=newest}
\usepgfplotslibrary{groupplots}
\usepgfplotslibrary{fillbetween}
\usepgfplotslibrary{colormaps}
\newcommand{\sinv}{s\textsuperscript{$-1$}}
\begin{document}
\begin{tikzpicture}
\draw [fill=gray!10] (0, 0) rectangle (5, 5);
\draw [fill=red!10] (5,0) -- (4.5,0) arc [start angle=0, delta angle=90, radius=4.5] (0,4.5) -- (0,5) -- (5,5) -- (5,0) ;
\draw (2.5,0) -- (2.5,5);
\draw (0,2.5) -- (5,2.5);
\draw (3.1820,3.1820) -- (5,5);
%\draw (5,2.5) node[anchor=south] {.};
\filldraw[black] (5,2.5) circle (2pt) node[anchor=west]{};
\filldraw[black] (5,5) circle (2pt) node[anchor=west]{};
\filldraw[black] (2.5,5) circle (2pt) node[anchor=west]{};
\filldraw[black] (5,0) circle (2pt) node[anchor=west]{};
\filldraw[black] (0,5) circle (2pt) node[anchor=west]{};
\filldraw[black] (4.5,0) circle (2pt) node[anchor=west]{};
\filldraw[black] (0,4.5) circle (2pt) node[anchor=west]{};
\filldraw[black] (3.7417,2.5) circle (2pt) node[anchor=west]{};
\filldraw[black] (2.5,3.7417) circle (2pt) node[anchor=west]{};
\end{tikzpicture}
\end{document}
答案1
如果您不想使用 PGFplots 提供的功能(它提供从文件读取数据的函数),则可以使用包提供的机制pgfplotstable
。请注意,pgfplotstable
loadspgfplots
和pgfplots
loads tikz
,因此您只需加载其中一个包。
使用这种方法,您首先需要使用 从文件中读取数据\pgfplotstableread
并将其存储在某个变量中。然后,您可以计算行数并使用 循环遍历行\foreach
。借助\pgfplotstablegetelem
,您可以从表格数据中获取相关坐标。
我简化了你的代码的某些部分。
\begin{filecontents}{GPs.dat}
0 .1
.1 0
.5 0.5
0.4 .9
\end{filecontents}
\documentclass[margin=5mm]{standalone}
\usepackage{pgfplotstable}
\pgfplotsset{compat=newest}
\begin{document}
\begin{tikzpicture}
\draw[fill=gray!10] (0, 0) rectangle (5, 5);
\draw[fill=red!10] (5,0) -- (4.5,0) arc[start angle=0, delta angle=90, radius=4.5]
-- (0,4.5) -- (0,5) -- (5,5) -- cycle;
\draw (2.5,0) -- (2.5,5)
(0,2.5) -- (5,2.5)
(3.1820,3.1820) -- (5,5);
\foreach \x/\y in {5/2.5, 5/5, 2.5/5, 5/0, 0/5, 4.5/0, 0/4.5, 3.7417/2.5, 2.5/3.7417} {
\filldraw[black] (\x,\y) circle[radius=2pt];
}
\pgfplotstableread{GPs.dat}\loadedtable
\pgfplotstablegetrowsof{\loadedtable}
\pgfmathtruncatemacro\loadedtablerowcount{\pgfplotsretval-1}
\foreach \i in {0,...,\loadedtablerowcount}{
\pgfplotstablegetelem{\i}{[index]0}\of{\loadedtable}
\pgfmathsetmacro{\x}{\pgfplotsretval}
\pgfplotstablegetelem{\i}{[index]1}\of{\loadedtable}
\pgfmathsetmacro{\y}{\pgfplotsretval}
\draw[blue] (\x,\y) circle (1pt);
}
\end{tikzpicture}
\end{document}
使用 PGFplots 的解决方案可能如下:
\begin{filecontents}{GPs.dat}
0 .1
.1 0
.5 0.5
0.4 .9
\end{filecontents}
\documentclass[margin=5mm]{standalone}
\usepackage{pgfplots}
\pgfplotsset{compat=newest}
\begin{document}
\begin{tikzpicture}
\begin{axis}[
axis equal,
axis line style={draw=none},
xtick=\empty,
ytick=\empty,
xmin=0,
xmax=5,
ymin=0,
ymax=5,
clip=false,
]
\draw[fill=gray!10] (0, 0) rectangle (5, 5);
\draw[fill=red!10] (5,0) -- (4.5,0) arc[start angle=0, delta angle=90, radius=4.5]
-- (0,4.5) -- (0,5) -- (5,5) -- cycle;
\draw (2.5,0) -- (2.5,5)
(0,2.5) -- (5,2.5)
(3.1820,3.1820) -- (5,5);
\pgfplotsforeachungrouped \x/\y in
{5/2.5, 5/5, 2.5/5, 5/0, 0/5, 4.5/0, 0/4.5, 3.7417/2.5, 2.5/3.7417} {
\edef\temp{\noexpand\filldraw[black] (\x,\y) circle[radius=2pt];}\temp
}
\addplot[blue, only marks, mark=o, mark size=1pt] table {GPs.dat};
\end{axis}
\end{tikzpicture}
\end{document}