从 Texlive 2013 升级到 2014 后 pstbarcode 不再起作用

从 Texlive 2013 升级到 2014 后 pstbarcode 不再起作用
\documentclass[border=10pt]{standalone}
\usepackage{pst-barcode}
\usepackage{auto-pst-pdf}
\begin{document}
\begin{pspicture}(0.7in,0.7in)
    \psbarcode{http://www.kernel.org}{}{qrcode}
\end{pspicture}
\end{document}

tl2014 中是否需要做任何特殊的事情才能继续使用 pstbarcode?

! Package auto-pst-pdf Error:"shell escape" (or "write18") is not enabled:
auto-pst-pdf will not work!.
See the auto-pst-pdf package documentation for explanation.
Type H <return> for immediate help.... Or turn off auto-pst-pdf.}

答案1

您需要安装 Perl 版本(http://activestate.com/perl/或者http://strawberryperl.com/)如果你想使用裁剪选项,这已经很有意义了。否则使用

 \usepackage[crop=off]{auto-pst-pdf}

或者简单地使用xelatex那么你不需要auto-pst-pdf

相关内容