I have the following tex file:
\providecommand{\pgfsyspdfmark}[3]{}
\documentclass[convert]{standalone}
\usepackage{pgfplots}
\usepackage{tikz}
\usepackage{array}
\usepackage{textgreek}
\usepackage{xcolor}
\usepackage{fixltx2e}
\usepackage{booktabs}
\usepackage{xfrac}
\usetikzlibrary{shapes,arrows,chains}
\usepgfplotslibrary{external}
\usetikzlibrary{pgfplots.external}
\pgfplotsset{compat=newest}
\begin{document}
\begin{tabular}{>{\small}l >{\small}r >{\small}r >{\small}r >{\small}r}
\toprule
Gas & $\sigma / \text{\AA}$ & $\sfrac{\varepsilon}{\kappa} / \text{K} $ & $\sfrac{\kappa T}{\varepsilon}$ / \text{-} & $\Omega_ \mu / \text{-} $ \\
\midrule
H\textsubscript{2} & $2.915$ & $ 38$ & $7.77$ & $0.86$ \\
N\textsubscript{2} & $3.667$ & $100$ & $2.96$ & $1.04$ \\
O\textsubscript{2} & $3.433$ & $113$ & $2.61$ & $1.08$ \\
\bottomrule
\end{tabular}
\end{document}
Whenever I run it, I read in the log file the following:
runsystem(imgconvert -density 300 Table_1.pdf -quality 90 Table_1.png)...executed.
What I guess happened during compilation is that the command "imgconvert etc etc" was ran on Windows to convert the pdf to a png.
What I would like to do now is add a command in my tex file that outputs:
runsystem(pdftops -eps Table_1.pdf Table_1.eps)...executed.
Here's how standalone implements it:
\sa@convertoption{imagemagick}[]{%
\def\sa@convert@command{\convertexe\space -density \density\space \infile\space \ifx\size\empty\else -resize \size\fi\space -quality 90 \outfile}%
\let\sa@convert@pageoffset\m@ne
}
Any ideas?