我有这个例子
% arara: pdflatex
% arara: pdflatex
% arara: clean: { files: [test.log,test.aux] }
\documentclass{article}
\usepackage{lipsum}
\begin{document}
\tableofcontents
\section{Section one}
\lipsum[1-5]
\section{Section two}
\lipsum[1-4]
\end{document}
我想删除除tex
和pdf
文件之外的所有辅助文件,% arara: clean: { files: [test.log,test.aux] }
您可以删除log
和aux
文件,我还需要删除所有创建的test.*
文件,只留下test.tex
和test.pdf
那么,是否% arara: clean: { files: [test.log,test.aux,test.toc,test.lof,test.lot,.....] }
有可能只提及本案中的剩余文件test.tex
,并且test.pdf
答案1
对于 arara 3.0 你可以执行以下操作:
% !TeX program = txs:///arara
% arara: pdflatex
% arara: lmkclean
\documentclass{article}
\begin{document}
test
\end{document}