如何使用 tikz 從 txt 檔案中繪製節點

如何使用 tikz 從 txt 檔案中繪製節點

所以基本上,我有一個 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加載pgfplotspgfplots加載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}

在此輸入影像描述

相關內容