在 Windows 上使用当前 TeXlive 输出 PerlTex

在 Windows 上使用当前 TeXlive 输出 PerlTex

我在 Windows 上的 TeXworks 上学习 PerlTeX。我有一个简单问题,但在 PerlTeX 软件包文档中找不到答案:

是否可以将 PerlTeX 编译输出为 .pdf?

到目前为止,我只能输出到 .dvi,这对我来说非常不合适。如果需要测试,请考虑这个 MWE(实际上取自 egregs 的精彩答案当使用 Fourier 包宏表达式作为 perl 宏的参数时,perltex 失败

\documentclass{article}
\usepackage{fourier}
\usepackage{letltxmacro}

\makeatletter
\AtBeginDocument{\LetLtxMacro\mathbb\math@bb}
\makeatother

\usepackage{perltex}

\perlnewcommand\simplycopy[1]{return $_[0];}

\begin{document}

This works: $\mathbb{N}$

This works too: $\simplycopy{\mathbb{N}}$

\end{document}

答案1

的呼吁perltex应该是

perltex --latex=pdflatex <filename>

使用 TeXworks 您可以定义一个新工具,以下是相关窗口

在此处输入图片描述

我认为没有办法将选项传递给pdflatex,例如-synctex=1-shell-escape

相关内容