gnuplot-lua-tikz パッケージを使用するとき、gnuplot のプロット コマンドを直接 LaTeX ソースの中に書けるようにする gnuplottex パッケージをインストールしておきました。 内部から gnuplot を実行するので、gnuplot.exe への PATH および LaTeX を実行するときの --shell-escape オプションが 必要です。 % % simplest example of gnuplot-lua-tikz and gnuplottex % \documentclass{jarticle} \def\pgfsysdriver{pgfsys-dvipdfmx.def} \usepackage[miktex]{gnuplottex} % % Here the option "miktex" actually means that the platform is % Windows. The package can also be used with TeX Live(W32) or with W32TeX, % with the same "miktex" option. % \usepackage{gnuplot-lua-tikz} \begin{document} \begin{figure} \centering \begin{gnuplot} set term lua tikz color solid size 8cm,6cm plot sin(x) \end{gnuplot} \end{figure} \end{document}