[tex4ht] [bug #429] htlatex: Does not delete intermediate files

Michal Hoftich michal.h21 at gmail.com
Fri Jul 5 15:13:13 CEST 2019


Follow-up Comment #4, bug #429 (project tex4ht):

You can use a simple wrapper around htlatex if you don't mind the issues I
described in my previous post. This version is for Unix based OSes:

#!/bin/bash
htlatex "$@"
base=${1%.tex}
rm $base.dvi
rm $base.idv
rm $base.lg
rm $base.tmp
# following files should be kept IMHO
# the log file can be usefull for error investigation
rm $base.log
# these files are reused between TeX runs, it is not a good idea to delete
them
rm $base.4tc
rm $base.4ct
rm $base.aux
rm $base.xref


I would say that deleting the dvi, idv, lg and tmp files should be quite safe,
as they are generated every time from the scratch and the subsequent
compilations don't depend on them. 

    _______________________________________________________

Reply to this item at:

  <http://puszcza.gnu.org.ua/bugs/?429>

_______________________________________________
  Message sent via/by Puszcza
  http://puszcza.gnu.org.ua/



More information about the tex4ht mailing list