/usr/bin/latexrevise is in latexdiff 1.2.1-1.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 | #!/usr/bin/env perl
# latexrevise - takes output file of latexdiff and removes either discarded
# or appended passages, then deletes all other latexdiff markup
#
# Copyright (C) 2004 F J Tilmann (tilmann@gfz-potsdam.de)
#
# Repository: https://github.com/ftilmann/latexdiff
# CTAN page: http://www.ctan.org/pkg/latexdiff
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
# Detailed usage information at the end of the file
# Note: version number now keeping up with latexdiff
# Version 1.0.2 Option --version
# Version 1.0.1 no changes to latexrevise
# Version 0.3 Updated for compatibility with latexdiff 0.3 output (DIFAUXCMD removal)
# Version 0.1 First public release
use Getopt::Long ;
use strict;
use warnings;
my $versionstring=<<EOF ;
This is LATEXREVISE 1.0.2
(c) 2005-2012 F J Tilmann
EOF
# Markup strings (make sure that this are set to the same value as in
# latexdiff)
# If at all possible, do not change these as parts of the program
# depend on the actual name.
# At the very least adapt subroutine postprocess to new tokens.
# note: have to use three backslashes to mean one literal one (reason
# unknown
my $ADDMARKOPEN='\\\DIFaddbegin(?:FL)? '; # Token to mark begin of appended text
my $ADDMARKCLOSE='\\\DIFaddend(?:FL)?(?: |\z)'; # Token to mark end of appended text (|\z only deals with the case of \DIFaddend right before \end{document}
my $ADDOPEN='\\\DIFadd(?:FL)?{'; # To mark begin of added text passage
my $ADDCLOSE='}'; # To mark end of added text passage
my $ADDCOMMENT='DIF > '; # To mark added comment line
my $DELMARKOPEN='\\\DIFdelbegin(?:FL)? '; # Token to mark begin of deleted text
my $DELMARKCLOSE='\\\DIFdelend(?:FL)?(?: |\z)'; # Token to mark end of deleted text
my $DELOPEN='\\\DIFdel(?:FL)?{'; # To mark begin of deleted text passage
my $DELCLOSE='}'; # To mark end of deleted text passage
my $ALTEXT='FL'; # string which might be appended to above commands
my $DELCMDOPEN='%DIFDELCMD < '; # To mark begin of deleted commands (must begin with %, i.e., be a comment
my $DELCMDCLOSE="%%%\n"; # To mark end of deleted commands (must end with a new line)
my $AUXCMD='%DIFAUXCMD' ; # follows auxiliary commands put in by latexdiff to make difference file legal
my $DELCOMMENT='DIF < '; # To mark deleted comment line
my $PREAMBLEXTBEG='^%DIF PREAMBLE EXTENSION ADDED BY LATEXDIFF$';
my $PREAMBLEXTEND='^%DIF END PREAMBLE EXTENSION ADDED BY LATEXDIFF$';
my $pat0 = '(?:[^{}]|\\\{|\\\})*';
my $pat1 = '(?:[^{}]|\\\{|\\\}|\{'.$pat0.'\})*';
my $pat2 = '(?:[^{}]|\\\{|\\\}|\{'.$pat1.'\})*';
my $pat3 = '(?:[^{}]|\\\{|\\\}|\{'.$pat2.'\})*';
my $pat4 = '(?:[^{}]|\\\{|\\\}|\{'.$pat3.'\})*';
my $brat0 = '(?:[^\[\]]|\\\[|\\\])*';
my ($input,$preamble,$body,$post);
my (@matches);
my ($cnt,$prematch,$postmatch);
my ($help,$version);
my ($verbose,$quiet,$accept,$decline,$simplify)=(0,0,0,0,0);
my ($comment,$comenv,$markup,$markenv);
# A word unlikely ever to be used in a real latex file
my $someword='gobbledegooksygook';
Getopt::Long::Configure('bundling');
GetOptions('accept|a' => \$accept,
'decline|d'=> \$decline,
'simplify|s' => \$simplify,
'comment|c=s' => \$comment,
'comment-environment|e=s' => \$comenv,
'markup|m=s' => \$markup,
'markup-environment|n=s' => \$markenv,
'no-warnings|q' => \$verbose,
'version' => \$version,
'verbose|V' => \$verbose,
'help|h|H' => \$help);
if ( $help ) {
usage() ;
}
if ( $version ) {
die $versionstring ;
}
if ( ($accept && $decline) || ($accept && $simplify) || ($decline && $simplify) ) {
die '-a,-d and -s options are mutually axclusive. Type latexrevise -h to get more help.';
}
print STDERR "ACCEPT mode\n" if $verbose && $accept;
print STDERR "DECLINE mode\n" if $verbose && $decline;
print STDERR "SIMPLIFY mode. WARNING: The output will not normally be valid latex,\n" if $verbose && $simplify;
# Slurp old and new files
{
local $/ ; # locally set record operator to undefined, ie. enable whole-file mode
$input=<>;
}
# split into parts
($preamble,$body,$post)=splitdoc($input,'\begin{document}','\end{document}');
if (length $preamble && ( $accept || $decline ) ) {
#
# WORK ON PREAMBLE
#
# (compare subroutine linediff in latexdiff to make sure correct strings are used)
# remove extra commands added to preamble by latexdiff
$preamble =~ s/${PREAMBLEXTBEG}.*?${PREAMBLEXTEND}\n{0,1}//smg ;
if ( $accept ) {
# delete mark up in appended lines
$preamble =~ s/^(.*) %DIF > $/$1/mg ;
} elsif ( $decline ) {
# delete appended lines
# $preamble =~ s/^(.*) %DIF > $//mg ;
$preamble =~ s/^(.*) %DIF > \n//mg ;
# delete markup in deleted lines
$preamble =~ s/^%DIF < //mg ;
}
# remove any remaining DIF markups
#$preamble =~ s/%DIF.*$//mg ;
$preamble =~ s/%DIF.*?\n//sg ;
}
#print $preamble ;
#
# WORK ON BODY
#
if ($accept) {
# remove ADDMARKOPEN, ADDMARKCLOSE tokens
@matches= $body =~ m/${ADDMARKOPEN}(.*?)${ADDMARKCLOSE}/sg;
checkpure(@matches);
$body =~ s/${ADDMARKOPEN}(.*?)${ADDMARKCLOSE}/$1/sg;
# remove text flanked by DELMARKOPEN, DELMARKCLOSE tokens
@matches= $body =~ m/${DELMARKOPEN}(.*?)${DELMARKCLOSE}/sg;
checkpure(@matches);
$body =~ s/${DELMARKOPEN}(.*?)${DELMARKCLOSE}//sg;
# remove markup of added comments
$body =~ s/%${ADDCOMMENT}(.*?)$/%$1/mg ;
# remove deleted comments (full line)
$body =~ s/^%${DELCOMMENT}.*?\n//mg ;
# remove deleted comments (part of line)
$body =~ s/%${DELCOMMENT}.*?$//mg ;
}
elsif ( $decline) {
# remove DELMARKOPEN, DELMARKCLOSE tokens
@matches= $body =~ m/${DELMARKOPEN}(.*?)${DELMARKCLOSE}/sg;
checkpure(@matches);
$body =~ s/${DELMARKOPEN}(.*?)${DELMARKCLOSE}/$1/sg;
# remove text flanked by ADDMARKOPEN, ADDMARKCLOSE tokens
# as latexdiff algorithm keeps the formatting and white spaces
# of the new text, sometimes whitespace might be inserted or
# removed inappropriately. We try to guess whether this has
# happened
# Mop up tokens. This must be done already now as otherwise
# detection of white-space problems does not work
$cnt = $body =~ s/${DELOPEN}($pat4)${DELCLOSE}/$1/sg;
# remove markup of deleted commands
$cnt += $body =~ s/${DELCMDOPEN}(.*?)${DELCMDCLOSE}/$1/sg ;
$cnt += $body =~ s/${DELCMDOPEN}//g ;
# remove aux commands
$cnt += $body =~ s/^.*${AUXCMD}$/${someword}/mg; $body =~ s/${someword}\n//g;
while ( $body =~ m/${ADDMARKOPEN}(.*?)${ADDMARKCLOSE}/s ) {
$prematch=$`;
$postmatch=$';
checkpure($1);
if ( $prematch =~ /\w$/s && $postmatch =~ /^\w/ ) {
# apparently no white-space between word=>Insert white space
$body =~ s/${ADDMARKOPEN}(.*?)${ADDMARKCLOSE}/ /s ;
}
elsif ( $prematch =~ /\s$/s && $postmatch =~ /^[.,;:]/ ) {
# space immediately before one of ".,:;" => remove this space
$body =~ s/\s${ADDMARKOPEN}(.*?)${ADDMARKCLOSE}//s ;
}
else {
# do not insert or remove any extras
$body =~ s/${ADDMARKOPEN}(.*?)${ADDMARKCLOSE}//s;
}
}
# Alternative without special cases treatment
# @matches= $body =~ m/${ADDMARKOPEN}(.*?)${ADDMARKCLOSE}/sg;
# checkpure(@matches);
# $body =~ s/${ADDMARKOPEN}(.*?)${ADDMARKCLOSE}//sg;
# remove markup of deleted comments
$body =~ s/%${DELCOMMENT}(.*?)$/%$1/mg ;
# remove added comments (full line)
$body =~ s/^%${ADDCOMMENT}.*?\n//mg ;
# remove added comments (part of line)
$body =~ s/%${ADDCOMMENT}.*?$//mg ;
}
# remove any remaining tokens
if ( $accept || $decline || $simplify ) {
# first substitution command deals with special case of added paragraph
$cnt = $body =~ s/${ADDOPEN}($pat4)\n${ADDCLOSE}\n/$1\n/sg;
$cnt += $body =~ s/${ADDOPEN}($pat4)${ADDCLOSE}/$1/sg;
$cnt==0 || warn 'Remaining $ADDOPEN tokens in DECLINE mode\n' unless ( $quiet || $accept || $simplify );
}
if ($accept || $simplify ) {
# Note: in decline mode these commands have already been removed above
$cnt = $body =~ s/${DELOPEN}($pat4)${DELCLOSE}/$1/sg;
#### remove markup of deleted commands
$cnt += $body =~ s/${DELCMDOPEN}(.*?)${DELCMDCLOSE}/$1/sg ;
$cnt += $body =~ s/${DELCMDOPEN}//g ;
# remove aux commands
# $cnt +=
$body =~ s/^.*${AUXCMD}$/${someword}/mg; $body =~ s/${someword}\n//g;
#### remove deleted comments
###$cnt += $body =~ s/${DIFDELCMD}.*?$//mg ;
$cnt==0 || warn 'Remaining $DELOPEN or $DIFDELCMD tokens in ACCEPT mode\n' unless ( $quiet || $simplify );
}
# Remove comment commands
if (defined($comment)) {
print STDERR "Removing \\$comment\{..\} sequences ..." if $verbose;
# protect $comments in comments by making them look different
$body =~ s/(%.*)${comment}(.*)$/$1${someword}$2/mg ;
# carry out the substitution
$cnt = 0 + $body =~ s/\\${comment}(?:\[${brat0}\])?\{${pat4}\}//sg ;
print STDERR "$cnt matches found and removed.\n" if $verbose;
# and undo the protection substitution
$body =~ s/(%.*)${someword}(.*)$/$1${comment}$2/mg ;
}
if (defined($comenv)) {
print STDERR "Removing $comenv environments ..." if $verbose;
$body =~ s/(%.*)${comenv}/$1${someword}/mg ;
## $cnt = 0 + $body =~ s/\\begin(?:\[${brat0}\])?\{\$comenv\}.*?\\end\{\$comenv\}//sg ;
$cnt = 0 + $body =~ s/\\begin(?:\[${brat0}\])?\{${comenv}\}.*?\\end\{${comenv}\}\s*?\n//sg ;
print STDERR "$cnt matches found and removed.\n" if $verbose;
$body =~ s/(%.*)${someword}/$1${comenv}/mg ;
}
if (defined($markup)) {
print STDERR "Removing \\$markup\{..\} cpmmands ..." if $verbose;
# protect $markups in comments by making them look different
$body =~ s/(%.*)${markup}(.*)$/$1${someword}$2/mg ;
# carry out the substitution
$cnt = 0 + $body =~ s/\\${markup}(?:\[${brat0}\])?\{(${pat4})\}/$1/sg ;
print STDERR "$cnt matches found and removed.\n" if $verbose;
# and undo the protection substitution
$body =~ s/(%.*)${someword}(.*)$/$1${markup}$2/mg ;
}
if (defined($markenv)) {
print STDERR "Removing $markenv environments ..." if $verbose;
$body =~ s/(%.*)${markenv}/$1${someword}/mg ;
$cnt = 0 + $body =~ s/\\begin(?:\[${brat0}\])?\{${markenv}\}\n?//sg;
$cnt += 0 + $body =~ s/\\end\{${markenv}\}\n?//sg;
print STDERR $cnt/2, " matches found and removed.\n" if $verbose;
$body =~ s/(%.*)${someword}/$1${markenv}/mg ;
}
if ( length $preamble ) {
print "$preamble\\begin{document}${body}\\end{document}$post";
} else {
print $body;
}
# checkpure(@matches)
# checks whether any of the strings in matches contains
# $ADDMARKOPEN, $ADDMARKCLOSE,$DELMARKOPEN, or $DELMARKCLOSE
# If so, die reporting nesting problems, otherwise return to caller
sub checkpure {
while (defined($_=shift)) {
if ( /$ADDMARKOPEN/ || /$ADDMARKCLOSE/
|| /$DELMARKOPEN/ || /$DELMARKCLOSE/ ) {
die <<EOF ;
There is a problem with nesting of $ADDMARKOPEN, $ADDMARKCLOSE,
$DELMARKOPEN, and $DELMARKCLOSE tokens that prevents me from
processing the file. Exiting ...
EOF
}
}
}
# ($part1,$part2,$part3)=splitdoc($text,$word1,$word2)
# splits $text into 3 parts at $word1 and $word2.
# if neither $word1 nor $word2 exist, $part1 and $part3 are empty, $part2 is $text
# If only $word1 or $word2 exist but not the other, output an error message.
#
# same subroutine as in latexdiff
sub splitdoc {
my ($text,$word1,$word2)=@_;
my $l1 = length $word1 ;
my $l2 = length $word2 ;
my $i = index($text,$word1);
my $j = index($text,$word2);
my ($part1,$part2,$part3)=("","","");
if ( $i<0 && $j<0) {
# no $word1 or $word2
print STDERR "Old Document not a complete latex file. Assuming it is a tex file with no preamble.\n";
$part2 = $text;
} elsif ( $i>=0 && $j>$i ) {
$part1 = substr($text,0,$i) ;
$part2 = substr($text,$i+$l1,$j-$i-$l1);
$part3 = substr($text,$j+$l2) unless $j+$l2 >= length $text;
} else {
die "$word1 or $word2 not in the correct order or not present as a pair."
}
return ($part1,$part2,$part3);
}
sub usage {
die <<"EOF";
Usage: $0 [OPTIONS] [diff.tex] > revised.tex
Read a file diff.tex (output of latexdiff), and remove its markup.
If no filename is given read from standard input. The command can be used
in ACCEPT, DECLINE, or SIMPLIFY mode, and be used to remove user-defined
latex commands from the input (see options -c, -e, -m, -n below).
In ACCEPT mode, all appended text fragments (or preamble lines)
are kept, and all discarded text fragments (or preamble lines) are
deleted.
In DECLINE mode, all discarded text fragments are kept, and all appended
text fragments are deleted.
If you wish to keep some changes, edit the diff.tex file in
advance, and manually remove those tokens which would otherwise be
deleted. Note that latexrevise only pays attention to the \\DIFaddbegin,
\\DIFaddend, \\DIFdelbegin, and \\DIFdelend tokens and corresponding FL
varieties. All \\DIFadd and \\DIFdel commands (but not their content) are
simply deleted. The commands added by latexdiff to the preamble are also
removed.
In SIMPLIFY mode all latexdiff markup is removed from the body of the text (after
\\begin{document}) except for \\DIFaddbegin, \\DIFaddend, \\DIFdelbegin, \\DIFdelend
tokens and the corresponding FL varieties of those commands. The result
will not in general be valid latex-code but might be easier to read and edit in
preparation for a subsequent run in ACCEPT or DECLINE mode.
In SIMPLIFY mode the preamble is left unmodified.
-a
--accept Run in ACCEPT mode (delete all blocks marked by \\DIFdelbegin
and \\DIFdelend).
-d
--decline Run in DECLINE mode (delete all blocks marked by \\DIFaddbegin
and \\DIFaddend).
-s
--simplify Run in SIMPLIFY mode (Keep all \\DIFaddbegin, \\DIFaddend,
\\DIFdelbegin, \\DIFdelend tokens, but remove all other latexdiff
markup from body.
Note that the three mode options are mutually exclusive. If no mode option is given,
latexrevise simply removes user annotations and markup according to the following four
options.
-c cmd
--comment=cmd Remove \\cmd{...}. cmd is supposed to mark some explicit
anotations which should be removed from the file before
release.
-e envir
--comment-environment=envir
Remove explicit annotation environments from the text, i.e. remove
\\begin{envir}
...
\\end{envir}
blocks.
-m cmd
--markup=cmd Remove the markup command cmd but leave its argument, i.e.
turn \\cmd{abc} into abc.
-n envir
--markup-environment=envir
Similarly, remove \\begin{envir} and \\end{envir} commands,
but leave content of the environment in the text.
-q
--no-warnings Do not warn users about \\DIDadd{..} or \\DIFdel statements
which should not be there anymore
-V
--verbose Verbose output
EOF
}
=head1 NAME
latexrevise - selectively remove markup and text from latexdiff output
=head1 SYNOPSIS
B<latexrevise> [ B<OPTIONS> ] [ F<diff.tex> ] > F<revised.tex>
=head1 DESCRIPTION
I<latexrevise> reads a file C<diff.tex> (output of I<latexdiff>), and remove the markup commands.
If no filename is given the input is read from standard input. The command can be used
in I<ACCEPT>, I<DECLINE>, or I<SIMPLIFY> mode, or can be used to remove user-defined
latex commands from the input (see B<-c>, B<-e>, B<-m>, and B<-n> below).
In I<ACCEPT> mode, all appended text fragments (or preamble lines)
are kept, and all discarded text fragments (or preamble lines) are
deleted.
In I<DECLINE> mode, all discarded text fragments are kept, and all appended
text fragments are deleted.
If you wish to keep some changes, edit the diff.tex file in
advance, and manually remove those tokens which would otherwise be
deleted. Note that I<latexrevise> only pays attention to the C<\DIFaddbegin>,
C<\DIFaddend>, C<\DIFdelbegin>, and C<\DIFdelend> tokens and corresponding FL
varieties. All C<\DIFadd> and C<\DIFdel> commands (but not their contents) are
simply deleted. The commands added by latexdiff to the preamble are also
removed.
In I<SIMPLIFY> mode, C<\DIFaddbegin, \DIFaddend, \DIFdelbegin, \DIFdelend>
tokens and their corresponding C<FL> varieties are kept but all other markup (e.g. C<DIFadd> and <\DIFdel>) is removed. The result
will not in general be valid latex-code but it will be easier to read and edit in
preparation for a subsequent run in I<ACCEPT> or I<DECLINE> mode.
In I<SIMPLIFY> mode the preamble is left unmodified.
=head1 OPTIONS
=over 4
=item B<-a> or B<--accept>
Run in I<ACCEPT> mode (delete all blocks marked by C<\DIFdelbegin> and C<\DIFdelend>).
=item B<-d> or B<--decline>
Run in I<DECLINE> mode (delete all blocks marked by C<\DIFaddbegin>
and C<\DIFaddend>).
=item B<-s> or B<--simplify>
Run in I<SIMPLIFY> mode (Keep all C<\DIFaddbegin>, C<\DIFaddend>,
C<\DIFdelbegin>, C<\DIFdelend> tokens, but remove all other latexdiff
markup from body).
=back
Note that the three mode options are mutually exclusive. If no mode option is given,
I<latexrevise> simply removes user annotations and markup according to the following four
options.
=over 4
=item B<-c cmd> or B<--comment=cmd>
Remove C<\cmd{...}> sequences. C<cmd> is supposed to mark some explicit
anotations which should be removed from the file before
release.
=item B<-e envir> or B<--comment-environment=envir>
Remove explicit annotation environments from the text, i.e. remove
\begin{envir}
...
\end{envir}
blocks.
=item B<-m cmd> or B<--markup=cmd>
Remove the markup command C<\cmd> but leave its argument, i.e.
turn C<\cmd{abc}> into C<abc>.
=item B<-n envir> or B<--markup-environment=envir>
Similarly, remove C<\begin{envir}> and C<\end{envir}> commands but
leave content of the environment in the text.
=item B<-V> or B<--verbose>
Verbose output
=item B<-q> or B<--no-warnings>
Do not warn users about C<\DIDadd{..}> or C<\DIFdel{..}> statements
which should have been removed already.
=back
=head1 BUGS
The current version is a beta version which has not yet been
extensively tested, but worked fine locally. Please submit bug reports using the issue tracker of the github repository page I<https://github.com/ftilmann/latexdiff.git>,
or send them to I<tilmann -- AT -- gfz-potsdam.de>.. Include the serial number of I<latexrevise>
(Option --version). If you come across latexdiff
output which is not processed correctly by I<latexrevise> please include the
problem file as well as the old and new files on which it is based,
ideally edited to only contain the offending passage as long as that still
reproduces the problem.
Note that I<latexrevise> gets confused by commented C<\begin{document}> or
C<\end{document}> statements
=head1 SEE ALSO
L<latexdiff>
=head1 PORTABILITY
I<latexrevise> does not make use of external commands and thus should run
on any platform supporting PERL v5 or higher.
=head1 AUTHOR
Copyright (C) 2004 Frederik Tilmann
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License Version 3
=cut
|