我绘制在图中的乳胶,然后我需要将其导出为.jpg
或.eps
文件,这里是我的.tex
代码?
\documentclass{article}
\usepackage{tikz}
\usepackage{pgfplots}
\begin{document}
\begin{tikzpicture}
\begin{axis}
\addplot coordinates {
( 338.1, 266.45 )
( 169.1, 143.43 )
( 84.5, 64.80 )
( 42.3, 34.19 )
( 21.1, 9.47 )
};
\end{axis}
\end{tikzpicture}
\end{document}
我怎样才能做到这一点?