同时生成单面和双面版本

同时生成单面和双面版本

是否有可能在编译我的 latex 文档时始终会创建两个 PDF(一个单面版本和一个双面版本)。因此,在我的情况下,两个版本只有第一行会有所不同:

\documentclass[11pt, a4paper, oneside]{scrreprt}
\documentclass[11pt, a4paper, twoside]{scrreprt}

答案1

如果方便的话,您也可以.tex在编译期间在批处理脚本中更改源文件。例如,这是一个使用DOS脚本的示例。

给定一个sample.tex文件:

\begin{document}
\thispagestyle{empty}
Hello
\end{document}

以下批处理文件将创建两个不同的tex文件并处理它们以给出显示的输出。

echo \documentclass[10pt]{article} > temp10.tex
type sample.tex >> temp10.tex
pdflatex temp10.tex

echo \documentclass[12pt]{article} > temp12.tex
type sample.tex >> temp12.tex
pdflatex temp12.tex

在此处输入图片描述

在此处输入图片描述

相关内容