tikz を使用して txt ファイルからノードを描画する方法

tikz を使用して txt ファイルからノードを描画する方法

つまり、私はtikzpictureを持っていて、この画像の中に36個のノードを含めたいと思っています。現在、それらを含める唯一の方法は、次のように書くことです。

\filldraw[blue] (3.8,3.6) circle (1pt) node[anchor=west]{};

36 個のノードすべてに対してこれを実行したいとは思いません。 36 個のノードの座標は txt ファイルに保存されているので、それを読み取って自動的に描画する方法はありますか? ポイントを相互に接続したくないので、パスやラインのプロットにはなりません。

これは、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 の機能を利用したくない場合は、パッケージ が提供するメカニズムを利用できます。は をロードし、は をロードするため、これらのパッケージのうち 1 つだけをロードすることpgfplotstableに注意してください。pgfplotstablepgfplotspgfplotstikz

このアプローチを使用する場合、まず を使用してファイルからデータを読み取り\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}

ここに画像の説明を入力してください

関連情報