diff options
author | Karl Berry <karl@freefriends.org> | 2013-11-16 23:50:07 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2013-11-16 23:50:07 +0000 |
commit | d2f0ecc37190cee10c8bc9e9370d53977f42d150 (patch) | |
tree | 8e33629f6715c0101a503f0d5bb820ed90095c0a /Master/texmf-dist/source/latex/gnuplottex | |
parent | 06ca18b8d555c479a50310faa96ee0d0b97d2e45 (diff) |
gnuplottex (16nov13)
git-svn-id: svn://tug.org/texlive/trunk@32160 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/source/latex/gnuplottex')
-rw-r--r-- | Master/texmf-dist/source/latex/gnuplottex/gnuplottex.dtx | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/Master/texmf-dist/source/latex/gnuplottex/gnuplottex.dtx b/Master/texmf-dist/source/latex/gnuplottex/gnuplottex.dtx index 5ea94440b65..34dd93a13f6 100644 --- a/Master/texmf-dist/source/latex/gnuplottex/gnuplottex.dtx +++ b/Master/texmf-dist/source/latex/gnuplottex/gnuplottex.dtx @@ -42,7 +42,7 @@ %<package> \NeedsTeXFormat{LaTeX2e}[1999/12/01] %<package> \ProvidesPackage{gnuplottex} %<*package> - [2013/09/08 v0.7.1 gnuplot graphs in LaTeX] + [2013/11/16 v0.7.2 gnuplot graphs in LaTeX] \RequirePackage{latexsym,graphicx,moreverb,keyval,ifthen} %</package> % @@ -60,7 +60,7 @@ %</driver> % \fi % -% \CheckSum{403} +% \CheckSum{408} % % \CharacterTable % {Upper-case \A\B\C\D\E\F\G\H\I\J\K\L\M\N\O\P\Q\R\S\T\U\V\W\X\Y\Z @@ -93,6 +93,7 @@ % \changes{v0.6}{2013/06/28}{Support for \texttt{siunitx} package and tikz terminal (Udo H\"ofel).} % \changes{v0.7}{2013/07/23}{Add cleanup and subfolder option (Udo H\"ofel).} % \changes{v0.7.1}{2013/09/08}{Fix bug with subfolder option with MikTeX (Thomas Schmid).} +% \changes{v0.7.2}{2013/11/16}{Allow to specify path to gnuplot (Manuel Solano).} % % \GetFileInfo{gnuplottex.dtx} % @@ -149,6 +150,10 @@ % \item[\oarg{cleanup}] Delete the \texttt{.gnuplot} files after conversion. % \end{description} % +% In addition, you can set \verb=\gnuplotexe= to the path to the gnuplot +% executable. Normally, you don't need to do this; use this option only if +% \LaTeX{} doesn't find gnuplot. +% % The following environment can be used to include graphs: % % \DescribeEnv{gnuplot} @@ -217,6 +222,8 @@ \DeclareOption{cleanup}{\cleanuptrue} \DeclareOption{subfolder}{\usesubfoldertrue} +\@ifundefined{gnuplotexe}{\def\gnuplotexe{gnuplot}}{} + \ExecuteOptions{shell} \ProcessOptions\relax %% test if shell escape really works @@ -349,7 +356,7 @@ \long\gdef\gnuplotgraphicsprocess{% \ifShellEscape \IfFileExists{\subfolder\figname.gnuplot}{% - \immediate\write18{gnuplot \subfolder\figname.gnuplot} + \immediate\write18{\gnuplotexe\space \subfolder\figname.gnuplot} \IfFileExists{\subfolder\figname.\extension}{% \PackageInfo{gnuplottex}{\subfolder\figname.gnuplot converted} \ifcleanup |