Files
oddmuse/modules/latex.pl

228 lines
7.6 KiB
Perl
Raw Normal View History

# Copyright (C) 20032015 Alex Schroeder <alex@gnu.org>
2004-04-25 15:17:24 +00:00
# Copyright (C) 2004 Haixing Hu <huhaixing@msn.com>
# Copyright (C) 2004, 2005 Todd Neal <tolchz@tolchz.net>
2004-02-13 18:34:18 +00:00
#
# 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.
2004-02-13 18:34:18 +00:00
#
# 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.
2004-02-13 18:34:18 +00:00
#
# You should have received a copy of the GNU General Public License along with
# this program. If not, see <http://www.gnu.org/licenses/>.
#
# External programs needed
# LaTeX - http://www.latex-project.org
# TeX - http://www.tug.org/teTeX/
#
# And one of :
# dvipng - http://sourceforge.net/projects/dvipng/
# convert - http://www.imagemagick.org/
#
# CSS Styles:
# span.eqCount
# img.LaTeX
# img.InlineMath
# img.DisplayMath
use strict;
use v5.10;
use File::Glob ':glob';
2015-04-10 13:31:28 +03:00
our ($DataDir, @MyRules);
our ($LatexDir, $LatexLinkDir, $LatexExtendPath, $LatexSingleDollars);
2004-02-13 18:34:18 +00:00
# One of the following options must be set correctly to the full path of
# either dvipng or convert. If both paths are set correctly, dvipng is used
# instead of convert
my $dvipngPath = "/usr/bin/dvipng";
my $convertPath = "/usr/bin/convert";
# Set $dispErrors to display LaTeX errors inline on the page.
my $dispErrors = 1;
# Set $useMD5 to 1 if you want to use MD5 hashes for filenames, set it to 0 to use
# a url-encoded hash. If $useMD5 is set and the Digest::MD5 module is not available,
# latex.pl falls back to urlencode
my $useMD5 = 0;
2004-02-13 18:34:18 +00:00
# PATH must be extended in order to make latex available along with
# any binaries that it may need to work
2004-04-25 15:17:24 +00:00
$LatexExtendPath = ':/usr/share/texmf/bin:/usr/bin:/usr/local/bin';
2004-02-13 18:34:18 +00:00
# Allow single dollars signs to escape LaTeX math commands
$LatexSingleDollars = 0;
# Set $allowPlainTeX to 1 to allow normal LaTeX commands inside of $[ ]$
# to be executed outside of the math environment. This should only be done
# if your wiki is not publically editable because of the possible security risk
my $allowPlainLaTeX = 0;
2004-02-13 18:34:18 +00:00
# $LatexDir must be accessible from the outside as $LatexLinkDir. The
# first directory is used to *save* the pictures, the second directory
# is used to produce the *link* to the pictures.
#
2004-02-13 18:34:18 +00:00
# Example: You store the images in /org/org.emacswiki/htdocs/test/latex.
# This directory is reachable from the outside as http://www.emacswiki.org/test/latex/.
# /org/org.emacswiki/htdocs/test is your $DataDir.
$LatexDir = "$DataDir/latex";
2004-04-25 15:17:24 +00:00
$LatexLinkDir= "/wiki/latex";
2004-02-13 18:34:18 +00:00
# Text used when referencing equations with EQ(equationLabel)
my $eqAbbrev = "Eq. ";
2004-02-13 18:34:18 +00:00
# You also need a template stored as $DataDir/template.latex. The
# template must contain the string <math> where the LaTeX code is
# supposed to go. It will be created on the first run.
2004-02-13 19:30:12 +00:00
my $LatexDefaultTemplateName = "$LatexDir/template.latex";
AddModuleDescription('latex.pl', 'LaTeX Extension');
# Internal Equation counting and referencing variables
my $eqCounter = 0;
my %eqHash;
2004-02-13 19:30:12 +00:00
my $LatexDefaultTemplate = << 'EOT';
\documentclass[12pt]{article}
\pagestyle{empty}
\begin{document}
<math>
\end{document}
EOT
2004-02-13 18:34:18 +00:00
push(@MyRules, \&LatexRule);
sub LatexRule {
if (m/\G\\\[(\(.*?\))?((.*\n)*?.*?)\\\]/cg) {
my $label = $1;
my $latex = $2;
$label =~ s#\(?\)?##g;# Remove the ()'s from the label and convert case
$label =~ tr/A-Z/a-z/;
$eqCounter++;
$eqHash{$label} = $eqCounter;
return &MakeLaTeX("\\begin{displaymath} $latex \\end{displaymath}", "display math",$label);
} elsif (m/\G\$\$((.*\n)*?.*?)\$\$/cg) {
2004-04-25 15:32:45 +00:00
return &MakeLaTeX("\$\$ $1 \$\$", $LatexSingleDollars ? "display math" : "inline math");
} elsif ($LatexSingleDollars and m/\G\$((.*\n)*?.*?)\$/cg) {
2004-04-25 15:32:45 +00:00
return &MakeLaTeX("\$ $1 \$", "inline math");
} elsif ($allowPlainLaTeX && m/\G\$\[((.*\n)*?.*?)\]\$/cg) { #Pick up plain LaTeX commands
return &MakeLaTeX(" $1 ", "LaTeX");
} elsif (m/\GEQ\((.*?)\)/cg) { # Handle references to equations
my $label = $1;
$label =~ tr/A-Z/a-z/;
if ($eqHash{$label}) {
return $eqAbbrev . "<a href=\"#$label\">". $eqHash{$label} . "</a>";
}
else {
return "[ Equation $label not found ]";
}
2004-02-13 18:34:18 +00:00
}
return;
2004-02-13 18:34:18 +00:00
}
sub MakeLaTeX {
my ($latex, $type, $label) = @_;
2004-02-13 18:34:18 +00:00
$ENV{PATH} .= $LatexExtendPath if $LatexExtendPath and $ENV{PATH} !~ /$LatexExtendPath/;
# Select which binary to use for conversion of dvi to images
my $useConvert = 0;
if (not IsFile($dvipngPath)) {
if (not IsFile($convertPath)) {
return "[Error: dvipng binary and convert binary not found at $dvipngPath or $convertPath ]";
}
else {
$useConvert = 1; # Fall back on convert if dvipng is missing and convert exists
}
}
2004-02-13 18:34:18 +00:00
$latex = UnquoteHtml($latex); # Change &lt; back to <, for example
# User selects which hash to use
my $hash;
my $hasMD5;
2015-05-02 04:19:09 +03:00
$hasMD5 = eval { require Digest::MD5 } if $useMD5;
if ($useMD5 && $hasMD5) {
$hash = Digest::MD5::md5_base64($latex);
$hash =~ s/\//a/g;
} else {
$hash = UrlEncode($latex);
$hash =~ s/%//g;
}
2004-02-13 18:34:18 +00:00
# check cache
if (not IsFile("$LatexDir/$hash.png") or ZeroSize("$LatexDir/$hash.png")) {
# Then create the image
# read template and replace <math>
CreateDir($LatexDir);
if (not IsFile($LatexDefaultTemplateName)) {
open (my $F, '>', encode_utf8($LatexDefaultTemplateName)) or return '[Unable to write template]';
2015-05-02 03:19:25 +03:00
print $F $LatexDefaultTemplate;
close $F;
}
my $template = ReadFileOrDie($LatexDefaultTemplateName);
$template =~ s/<math>/$latex/gi;
#setup rendering directory
my $dir = "$LatexDir/$hash";
if (IsDir($dir)) {
Unlink((Glob("$dir/*")));
} else {
CreateDir($dir);
}
ChangeDir($dir) or return "[Unable to switch to $dir]";
WriteStringToFile ("srender.tex", $template);
my $errorText = qx(latex srender.tex);
# We should not return until we're ready to clean up!
my $error = '';
if ($? && $dispErrors) {
$error = "[Illegal LaTeX markup: <pre>$latex</pre>] <br/> Error: <pre>$errorText</pre>";
} elsif ($?) {
$error = "[Illegal LaTeX markup: <pre>$latex</pre>] <br/>";
} else {
my $output;
# Use specified binary to convert dvi to png
if ($useConvert) {
$output = qx($convertPath -antialias -crop 0x0 -density 120x120 -transparent white srender.dvi srender1.png );
$error = "[convert error $? ($output)]" if $?;
} else {
$output = qx($dvipngPath -T tight -bg Transparent srender.dvi);
$error = "[dvipng error $? ($output)]" if $?;
}
if (not $error and IsFile('srender1.png') and not ZeroSize('srender1.png')) {
my $png = ReadFileOrDie("srender1.png");
WriteStringToFile ("$LatexDir/$hash.png", $png);
} else {
$error = "[Error retrieving image for $latex]";
}
}
Unlink(glob('*'));
ChangeDir($LatexDir);
RemoveDir($dir);
return $error if $error;
}
# Finally print the html for the image
if ($type eq "inline math") { # inline math
return ("<img class='InlineMath' "
."src='$LatexLinkDir/$hash.png' alt='$latex'\/>");
} elsif ($type eq "display math") { # display math
my $ret;
if ($label) { $ret = "<a name='$label'>"; }
$ret .= "<center><img class='DisplayMath' "
."src='$LatexLinkDir/$hash.png' alt='$latex'> <span class=\'eqCount\'>($eqCounter)</span><\/center>";
return($ret);
} else { # latex format
return ("<img class='LaTeX' "
."src='$LatexLinkDir/$hash.png' alt='$latex' \/>");
}
2004-02-13 18:34:18 +00:00
}