我在 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}