使用 gnuplot 和 TikZ 输出图表的问题

使用 gnuplot 和 TikZ 输出图表的问题

我想使用 gnuplot 和 TikZ 以及下面显示的源(这是 MWE)绘制图形,但它对我来说不起作用。

\documentclass[uplatex]{jsarticle}
\usepackage{gnuplot-lua-tikz}
\begin{document}
\include{sin}
\end{document}

在此代码中,sin.tex是由该 gnuplot 的代码生成的:

set terminal tikz solid
set output "sin.tex"
plot sin(x)

下图就是结果。

在此处输入图片描述

plot sin(x)但是,当终端为浅绿色时,gnuplot会输出正弦曲线。有人能解决这个问题吗?

对不起,我的英语不好。

答案1

在我看来,"tikz"gnuplot 的终端是为pdflatex编译器设计的,您可以使用latex编译器来获取中间 .dvi 文件。

请尝试 pdflatex 编译器或 gnuplot 中的“pslatex”终端

相关内容