我需要在 LaTeX 文档中显示线图,但我不知道该怎么做。我在 Google 上搜索,但没有得到任何令人满意的结果。在 LaTeX 中真的可以做到这一点吗?还是我必须嵌入在 Excel 中创建的线图的 jpeg 图像?
答案1
嗯pgfplots
,当然:
\documentclass[border=5mm]{standalone}
\usepackage{pgfplots}
\begin{document}
\begin{tikzpicture}
\begin{axis}[domain=-2*pi:2*pi]
\addplot[mark=none, samples=100, red] function {sin(x)};
\end{axis}
\end{tikzpicture}
\end{document}
它简单、干净,可以生成高质量的图表,与文档风格完美契合。对于更复杂的图表,您可以使用 gnuplot 进行计算。
pgfplots
还可以包含表格文件(存储在列中的数据,例如 gnuplot 打印的表格)。