|
D.8.2.12 rmx
Procedure from library latex.lib (see latex_lib).
- Usage:
- rmx(fname); fname string
- Return:
- nothing; removes the
.log and .aux files associated to
the LaTeX file <fname>.
- Note:
- If
fname ends by ".dvi" or ".tex" , the
.dvi or .tex file will be deleted, too.
Example:
| LIB "latex.lib";
ring r;
poly f = x+y+z;
opentex("exp001"); // defaulted latex2e document
texobj("exp001","A polynom",f);
closetex("exp001");
tex("exp001");
==> calling latex2e for : exp001.tex
==>
==> This is TeX, Version 3.14159 (C version 6.1)
==> (exp001.tex
==> LaTeX2e <1996/12/01> patch level 1
==> Babel <v3.6h> and hyphenation patterns for american, german, loaded.
==> (/usr/lib/texmf/texmf/tex/latex/base/article.cls
==> Document Class: article 1996/10/31 v1.3u Standard LaTeX document class
==> (/usr/lib/texmf/texmf/tex/latex/base/size10.clo))
==> (/usr/lib/texmf/texmf/tex/latex/amslatex/amsmath.sty
==> (/usr/lib/texmf/texmf/tex/latex/amslatex/amstext.sty
==> (/usr/lib/texmf/texmf/tex/latex/amslatex/amsgen.sty))
==> (/usr/lib/texmf/texmf/tex/latex/amslatex/amsbsy.sty)
==> (/usr/lib/texmf/texmf/tex/latex/amslatex/amsopn.sty))
==> (/usr/lib/texmf/texmf/tex/latex/amsfonts/amssymb.sty
==> (/usr/lib/texmf/texmf/tex/latex/amsfonts/amsfonts.sty))
==> No file exp001.aux.
==> (/usr/lib/texmf/texmf/tex/latex/amsfonts/umsa.fd)
==> (/usr/lib/texmf/texmf/tex/latex/amsfonts/umsb.fd) [1] (exp001.aux) )
==> Output written on exp001.dvi (1 page, 308 bytes).
==> Transcript written on exp001.log.
rmx("exp001"); // removes aux and log file of exp001
system("sh","rm exp001.*");
==> 0
|
|