Artifact 998b04c44eda2dba4c2901610ee6f416ea1504f2c00d6161a55ebb85f1cec1c7:
- Executable file
r37/doc/util/conv.pl
— part of check-in
[f2fda60abd]
at
2011-09-02 18:13:33
on branch master
— Some historical releases purely for archival purposes
git-svn-id: https://svn.code.sf.net/p/reduce-algebra/code/trunk/historical@1375 2bfe0521-f11c-4a00-b80e-6202646ff360 (user: arthurcnorman@users.sourceforge.net, size: 354) [annotate] [blame] [check-ins using] [more...]
open(FL,"r37.tmp") or die "r37.tmp not there\n"; open(FLO,">r37.tex"); while (<FL>) { s/ *$//g; # Remove trailing blanks. s/\t/ /g; # Convert tabs. s/\\begin{verbatim}/{\\small\\begin{verbatim}/; s/\\end{verbatim}/\\end{verbatim}}/; print FLO $_; } close FL; close FLO; exit(0);