다음과 같은 예가 있습니다 pgfplots
.
\documentclass{article}
\usepackage{pgfplots}
\usepackage{filecontents}
\begin{filecontents}{datax.dat}
1,3,6
2,4,5
3,3,7
4,1,2
5,1,1
\end{filecontents}
\begin{document}
\begin{tikzpicture}
\begin{axis}[xlabel={$x$},ylabel={Column Data}]
% Graph column 2 versus column 0
\addplot table[x index=0,y index=2,col sep=comma] {datax.dat};
\addlegendentry{Column 3}% y index+1 since humans count from 1
% Graph column 1 versus column 0
\addplot table[x index=0,y index=1,col sep=comma] {datax.dat};
\addlegendentry{Column 2}
\end{axis}
\end{tikzpicture}
\end{document}
tex 문서 자체가 있는 동일한 디렉토리에 있는 datax.dat
파일에서 정의된 데이터를 읽고 싶습니다 . test.txt
이 작업을 수행하는 방법을 도와 주시겠습니까?