Annotation of loncom/xml/lontexconvert.pm, revision 1.118
1.1 harris41 1: # The LearningOnline Network with CAPA
2: # TeX Conversion Module
3: #
1.118 ! raeburn 4: # $Id: lontexconvert.pm,v 1.117 2016/01/22 22:31:51 damieng Exp $
1.4 www 5: #
6: # Copyright Michigan State University Board of Trustees
7: #
8: # This file is part of the LearningOnline Network with CAPA (LON-CAPA).
9: #
10: # LON-CAPA is free software; you can redistribute it and/or modify
11: # it under the terms of the GNU General Public License as published by
12: # the Free Software Foundation; either version 2 of the License, or
13: # (at your option) any later version.
14: #
15: # LON-CAPA is distributed in the hope that it will be useful,
16: # but WITHOUT ANY WARRANTY; without even the implied warranty of
17: # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18: # GNU General Public License for more details.
19: #
20: # You should have received a copy of the GNU General Public License
21: # along with LON-CAPA; if not, write to the Free Software
22: # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
23: #
24: # /home/httpd/html/adm/gpl.txt
25: #
26: # http://www.lon-capa.org/
27: #
28: # Copyright for TtHfunc and TtMfunc by Ian Hutchinson.
29: # TtHfunc and TtMfunc (the "Code") may be compiled and linked into
30: # binary executable programs or libraries distributed by the
31: # Michigan State University (the "Licensee"), but any binaries so
32: # distributed are hereby licensed only for use in the context
33: # of a program or computational system for which the Licensee is the
34: # primary author or distributor, and which performs substantial
35: # additional tasks beyond the translation of (La)TeX into HTML.
36: # The C source of the Code may not be distributed by the Licensee
37: # to any other parties under any circumstances.
38: #
1.1 harris41 39:
40: package Apache::lontexconvert;
41:
42: use strict;
1.33 albertel 43: use tth();
1.1 harris41 44: use vars qw($errorstring);
1.73 albertel 45: #use Apache::lonxml();
1.33 albertel 46: use Apache::lonlocal;
1.65 albertel 47: use Apache::lonnet;
1.75 www 48: use lib '/home/httpd/lib/perl/';
49: use LONCAPA;
1.94 raeburn 50: use URI::Escape;
51: use IO::Socket::INET;
1.1 harris41 52:
1.110 foxr 53:
54: #
55: # Table of substitutions to unicode characters.
56: #
1.114 raeburn 57:
58: my %unicode_harpoons = (
59: '\rightleftharpoons' => 0x21cc,
60: );
61:
1.110 foxr 62: my %unicode_translations = (
1.111 foxr 63:
1.114 raeburn 64: # Brackets - unicode for browsers/OS which support it.
65:
66: '' => 0x23a1,
67: '' => 0x23a2,
1.115 raeburn 68: '' => 0x23a3,
69: '' => 0x23a4,
1.114 raeburn 70: '' => 0x23a5,
1.116 raeburn 71: '' => 0x23a6,
1.114 raeburn 72:
73: # Parens - unicode for browsers/OS which support it
74:
75: '' => 0x239b,
76: '' => 0x239c,
77: '' => 0x239d,
78: '' => 0x239e,
79: '' => 0x239f,
80: '' => 0x23a0,
81:
82: );
83:
84: my %ascii_8bit_translations = (
85:
86: # Brackets - pure 8-bit ascii ugliness for browsers/OS which can't handle unicode
1.111 foxr 87:
88: '' => 0x5b,
89: '' => 0x5b, # '['
90: '' => 0x5b,
91: '' => 0x5d, # ']'
92: '' => 0x5d,
93: '' => 0x5d,
94:
1.114 raeburn 95: # Parens - pure 8-bit ascii ugliness for browsers/OS which can't handle unicode
1.111 foxr 96:
97: '' => 0x28,
98: '' => 0x28, # '('
99: '' => 0x28,
100: '' => 0x29,
101: '' => 0x29, # '('
1.114 raeburn 102: '' => 0x29,
1.111 foxr 103:
1.110 foxr 104: );
105:
106: ##
107: # Utility to convert elements of a string to unicode:
108: #
109: # @param input - Input string
110: # @param pattern - Pattern to convert
111: # @param unicode - Unicode to substitute for pattern.
112: #
113: # @return string - resulting string.
114: #
115: sub unicode_subst {
116: my ($input, $pattern, $unicode) = @_;
117:
118: my $char = pack('U', $unicode);
119:
120: $input =~ s/$pattern/$char/g;
121:
122: return $input;
123: }
124:
1.1 harris41 125: # ====================================================================== Header
126:
1.29 albertel 127: sub init_tth {
1.65 albertel 128: my $options=$env{'course.'.$env{'request.course.id'}.'.tthoptions'};
1.74 albertel 129: if ($options =~ /\S/) {
130: $options = ' '.$options;
131: } else {
132: undef($options);
133: }
1.65 albertel 134: if ($env{'browser.mathml'}) {
1.29 albertel 135: &tth::ttminit();
1.65 albertel 136: if ($env{'browser.unicode'}) {
1.74 albertel 137: &tth::ttmoptions('-L -u1'.$options);
1.29 albertel 138: } else {
1.74 albertel 139: &tth::ttmoptions('-L -u0'.$options);
1.29 albertel 140: }
141: } else {
142: &tth::tthinit();
1.65 albertel 143: if ($env{'browser.unicode'}) {
1.74 albertel 144: &tth::tthoptions('-L -u1'.$options);
1.29 albertel 145: } else {
1.74 albertel 146: &tth::tthoptions('-L -u0'.$options);
1.29 albertel 147: }
148: }
149: }
150:
1.1 harris41 151: # ================================================================== Conversion
152:
1.19 albertel 153: $Apache::lontexconvert::messedup=0;
1.36 albertel 154:
1.91 jms 155:
1.36 albertel 156: sub convert_real {
157: my ($texstring)=@_;
158: my ($xmlstring,$errorstring);
159: local $SIG{SEGV}=sub { $Apache::lontexconvert::messedup=1; die; };
160: local $SIG{ALRM}=sub {
1.37 albertel 161: &Apache::lonnet::logthis("ALRM");
1.36 albertel 162: $xmlstring='['.&mt("TeX unconverted due to errors").']';
163: $Apache::lontexconvert::messedup=1;
164: die &mt("TeX unconverted due to errors");
165: };
1.63 albertel 166: &Apache::lonxml::start_alarm();
1.65 albertel 167: if ($env{'browser.mathml'}) {
1.36 albertel 168: $xmlstring=&tth::ttm($$texstring);
169: $xmlstring=~s/\<math\>/\<math xmlns=\"\&mathns\;\"\>/g;
170: $xmlstring=~s/\<br\>/\<br\/\>/g;
171: $xmlstring=~s/\<p\>/\<p\>\<\/p\>/g;
172: $errorstring.=&tth::ttmerror();
173: } else {
174: $xmlstring=&tth::tth($$texstring);
175: $errorstring.=&tth::ttherror();
176: $xmlstring=~s-</font(\s*)>-</font>-g;
177: }
1.43 www 178: $xmlstring=~s/^\s*\<br clear\=\"all\"/\<br/s;
1.36 albertel 179: $xmlstring=~s/^\s*//;
180: $xmlstring=~s/\s*$//;
1.117 damieng 181: $xmlstring=~s/^<br \/><table/<table/;
1.110 foxr 182: &Apache::lonxml::end_alarm();
183:
1.85 foxr 184: #
1.116 raeburn 185: # Several strings produced by tth require
1.110 foxr 186: # transliteration -> unicode equivalents to render reliably
1.114 raeburn 187: # in browsers. %unicode_translations and %unicode_harpoons are tables of
1.116 raeburn 188: # string->substitution which we now apply. (%ascii_8bit_translations used
1.114 raeburn 189: # instead for Windows XP and mobile devices.
190:
191: my $use_ascii;
192: if ($env{'browser.os'} eq 'win') {
193: if (($env{'browser.osversion'}) && ($env{'browser.osversion'} < 6.0)) {
194: $use_ascii = 1;
195: }
196: }
197: if ($env{'browser.mobile'}) {
198: $use_ascii = 1;
199: }
1.110 foxr 200:
201: foreach my $pattern (keys(%unicode_translations)) {
202: my $unicode = $unicode_translations{$pattern};
1.114 raeburn 203: if ($use_ascii) {
204: $unicode = $ascii_8bit_translations{$pattern};
205: }
1.110 foxr 206: $xmlstring = &unicode_subst($xmlstring, $pattern, $unicode);
207: }
208:
1.114 raeburn 209: foreach my $pattern (keys(%unicode_harpoons)) {
210: $xmlstring = &unicode_subst($xmlstring, $pattern, $unicode_harpoons{$pattern});
211: }
1.85 foxr 212:
1.36 albertel 213: return ($xmlstring,$errorstring);
214: }
215:
1.59 albertel 216: sub tth_converted {
1.31 albertel 217: my $texstring=shift;
1.34 www 218: my $xmlstring='['.&mt('UNDISPLAYABLE').']';
1.31 albertel 219: if ($Apache::lontexconvert::messedup) {
1.35 albertel 220: return '['.&mt('TeX unconverted due to previous errors').']';
1.31 albertel 221: }
1.59 albertel 222: $$texstring ='\\documentstyle{article}'.$$texstring;
223:
1.31 albertel 224: eval(<<'ENDCONV');
1.36 albertel 225: ($xmlstring,$errorstring)=&convert_real($texstring)
1.12 www 226: ENDCONV
1.32 albertel 227: if ($@) {
1.35 albertel 228: $errorstring.=&mt("Evaluation Error: ").$@;
1.32 albertel 229: $Apache::lontexconvert::messedup=1;
230: }
1.37 albertel 231: if ($Apache::lontexconvert::messedup || &tth::tthmessedup() ||
232: $errorstring) {
1.31 albertel 233: &Apache::lonnet::logthis("Trying to kill myself");
234: $Apache::lontexconvert::messedup=1;
1.70 albertel 235: if (ref($Apache::lonxml::request)) {
236: $Apache::lonxml::request->child_terminate();
237: } else {
238: my $request;
239: eval { $request=Apache->request; };
240: if (!$request) {
241: eval { $request=Apache2::RequestUtil->request; };
242: }
243: if ($request) {
244: $request->child_terminate();
245: } else {
246: &Apache::lonnet::logthis("Unable to find a request to do child_terminate on");
247: }
248: }
1.31 albertel 249: }
250: return $xmlstring;
1.1 harris41 251: }
252:
1.62 albertel 253: sub clean_out_math_mode {
254: my ($texstring)=@_;
1.82 albertel 255: $$texstring=~s/(?<!\\)\$//g;
1.62 albertel 256: $$texstring=~s/\\[\)\(\]\[]//g;
257: $$texstring=~s/\\ensuremath//g;
258: return '';
259: }
260:
261: sub displaystyle {
262: my ($texstring)=@_;
1.106 bisitz 263: #has a $$ or \[ or \displaystyle or eqnarray in it, guessinng it's display mode
1.62 albertel 264: if ($$texstring=~/[^\\]\$\$/ ||
1.106 bisitz 265: $$texstring=~/\\\[/ ||
266: $$texstring=~/\\displaystyle/ ||
267: $$texstring=~/eqnarray/
268: ) { return 1; }
1.62 albertel 269: return 0;
270: }
271:
1.109 dseaton 272: sub MathJax_converted {
273: my $texstring=shift;
274: my $tag='math/tex;';
275: if (&displaystyle($texstring)) { $tag='math/tex; mode=display'; }
276: &clean_out_math_mode($texstring);
277: return &MathJax_header().
278: '<script type="'.$tag.'">'.$$texstring.'</script>';
279: }
280:
281: {
282: #Relies heavily on the previous jsMath installation
283: my @MathJax_sent_header;
284: sub MathJax_reset {
285: undef(@MathJax_sent_header);
286: }
287: sub MathJax_push {
288: push(@MathJax_sent_header,0);
289: }
290: sub MathJax_header {
291: if (!@MathJax_sent_header) {
292: &Apache::lonnet::logthis("mismatched calls of MathJax_header and MathJax_process");
293: return '';
294: }
295: return '' if $MathJax_sent_header[-1];
296: $MathJax_sent_header[-1]=1;
297: return
298: '<script type="text/javascript" src="/adm/MathJax/MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>'."\n";
299: }
300: #sub MathJax_process {
301: # my $state = pop(@MathJax_sent_header);
302: # return '' if !$state;
303: # return "\n".
304: # '<script type="text/javascript">MathJax.Process()</script>'."\n";
305: #}
306: #sub MathJax_state {
307: # my ($level) = @_;
308: # return $MathJax_sent_header[$level];
309: #}
310: }
311:
1.83 albertel 312: sub tex_engine {
313: if (exists($env{'form.texengine'})) {
1.88 raeburn 314: if ($env{'form.texengine'} ne '') {
1.118 ! raeburn 315: if (lc($env{'form.texengine'}) eq 'jsmath') {
! 316: return 'MathJax';
! 317: }
1.88 raeburn 318: return $env{'form.texengine'};
319: }
1.83 albertel 320: }
321: if ($env{'request.course.id'}
322: && exists($env{'course.'.$env{'request.course.id'}.'.texengine'})) {
1.118 ! raeburn 323: if (lc($env{'course.'.$env{'request.course.id'}.'.texengine'}) eq 'jsmath') {
! 324: return 'MathJax';
! 325: }
1.83 albertel 326: return $env{'course.'.$env{'request.course.id'}.'.texengine'};
327: }
328: if (exists($env{'environment.texengine'})) {
1.118 ! raeburn 329: if (lc($env{'environment.texengine'}) eq 'jsmath') {
! 330: return 'MathJax';
! 331: }
1.83 albertel 332: return $env{'environment.texengine'};
333: }
334: return 'tth';
335: }
336:
1.72 albertel 337: sub init_math_support {
1.73 albertel 338: &init_tth();
1.109 dseaton 339: &Apache::lontexconvert::MathJax_push();
1.118 ! raeburn 340: if (lc(&tex_engine()) eq 'mathjax') {
1.109 dseaton 341: return &Apache::lontexconvert::MathJax_header();
342: }
1.72 albertel 343: return;
344: }
345:
1.92 hauer 346: sub mimetex_valign {
1.94 raeburn 347: my ($esc_texstring)=@_;
348: my $valign = 0;
349: my $path = '/cgi-bin/mimetex.cgi?'.$esc_texstring;
350: my $socket;
351: &Apache::lonxml::start_alarm();
1.108 raeburn 352: $socket = IO::Socket::INET->new(PeerAddr => 'localhost',
1.107 raeburn 353: PeerPort => 'http(80)',
354: Proto => 'tcp');
1.94 raeburn 355: if ($socket) {
1.96 raeburn 356: my $headreq = "HEAD $path HTTP/1.0\r\n\r\n";
1.94 raeburn 357: print $socket $headreq;
358: while (<$socket>) {
359: if (/Vertical\-Align\:\s*?([\-\d]+)/) {
360: $valign = $1;
361: }
362: }
1.105 raeburn 363: $socket->close();
1.92 hauer 364: }
1.94 raeburn 365: &Apache::lonxml::end_alarm();
366: return $valign;
1.92 hauer 367: }
368:
1.62 albertel 369: sub mimetex_converted {
370: my $texstring=shift;
1.97 www 371:
372: # Alt-Argument for screen readers
373: my $alt_string=$$texstring;
374: $alt_string=~s/\"/\'\'/g;
375:
376: # Is this displaystyle?
377:
1.62 albertel 378: my $displaystyle=&displaystyle($texstring);
379:
1.97 www 380: # Remove math environment delimiters
381:
1.62 albertel 382: &clean_out_math_mode($texstring);
383:
384: if ($displaystyle) {
385: $$texstring='\\displaystyle \\Large '.$$texstring;
1.59 albertel 386: }
1.94 raeburn 387: my $esc_texstring = &uri_escape($$texstring);
388: my $valign = &mimetex_valign($esc_texstring);
1.97 www 389: my $result='<img src="/cgi-bin/mimetex.cgi?'.$esc_texstring.'" style="vertical-align:'.$valign.'px" alt="'.$alt_string.'" />';
1.62 albertel 390: if ($displaystyle) {
1.106 bisitz 391: $result='<div style="text-align:center">'.$result.'</div>';
1.62 albertel 392: }
393: return $result;
1.59 albertel 394: }
395:
396: sub converted {
1.67 albertel 397: my ($string,$mode)=@_;
1.83 albertel 398: if ($mode eq '') { $mode = &tex_engine(); }
1.68 albertel 399: if ($mode =~ /tth/i) {
1.67 albertel 400: return &tth_converted($string);
1.68 albertel 401: } elsif ($mode =~ /jsmath/i) {
1.118 ! raeburn 402: return &MathJax_converted($string);
1.109 dseaton 403: } elsif ($mode =~ /mathjax/i) {
404: return &MathJax_converted($string);
1.68 albertel 405: } elsif ($mode =~ /mimetex/i) {
1.67 albertel 406: return &mimetex_converted($string);
1.98 www 407: } elsif ($mode =~ /raw/i) {
408: return $$string;
1.59 albertel 409: }
1.67 albertel 410: return &tth_converted($string);
1.59 albertel 411: }
412:
1.6 www 413: # ------------------------------------------------------------ Message display
414:
1.9 albertel 415: sub to_convert {
416: my ($string) = @_;
1.102 faziophi 417: &init_tth();
1.22 www 418: $string=~s/\<br\s*\/?\>/ /gs;
1.30 albertel 419: # $string=~s/\s/ /gs;
1.18 albertel 420: $string=&HTML::Entities::decode($string);
1.9 albertel 421: return &converted(\$string);
422: }
423:
1.20 www 424: sub smiley {
1.31 albertel 425: my $expression=shift;
1.99 faziophi 426: my %smileys=(
427: '\:\-*\)' => 'face-smile.png',
1.100 faziophi 428: '8\-\)' => 'face-cool.png',
429: '8\-(I|\|)' => 'face-glasses.png',
1.101 faziophi 430: '\:\-(I|\|)' => 'face-plain.png',
1.99 faziophi 431: '\:\-(o|O|\(\))' => 'face-surprise.png',
1.101 faziophi 432: ':\-\(' => 'face-sad.png',
433: '\;\-\)' => 'face-wink.png',
434: '\:\-(P|p)' => 'face-raspberry.png',
1.100 faziophi 435: '\:\-(\\\|\\/)' => 'face-uncertain.png',
1.101 faziophi 436: '\:\-D' => 'face-smile-big.png',
437: '\:\-(C|\@)' => 'face-angry.png',
1.99 faziophi 438: '\:(\'|\`)\-*\(' => 'face-crying.png',
1.101 faziophi 439: '\:\-(X|x|\#)' => 'face-quiet.png',
440: '\:\-(s|S)' => 'face-uncertain.png',
441: '\:\-\$' => 'face-embarrassed.png',
442: '\:\-\*' => 'face-kiss.png',
1.99 faziophi 443: '\+O\(' => 'face-sick.png',
444: '(\<\;3|\(heart\))' => 'heart.png',
445: '\(rose\)' => 'rose.png',
446: '\(pizza\)' => 'food-pizza.png',
447: '\(cake\)' => 'food-cake.png',
448: '\(ninja\)' => 'face-ninja.png',
449: '\(pirate\)' => 'face-pirate.png',
450: '\((agree|yes)\)' => 'opinion-agree.png',
451: '\((disagree|nay)\)' => 'opinion-disagree.png',
1.101 faziophi 452: '(o|O)\-\)' => 'face-angel.png',
1.99 faziophi 453: );
1.31 albertel 454: my $iconpath=$Apache::lonnet::perlvar{'lonIconsURL'};
1.79 albertel 455: foreach my $smiley (keys(%smileys)) {
1.99 faziophi 456: $expression=~s/$smiley/\<img src="$iconpath\/$smileys{$smiley}" \/\>/gs;
1.31 albertel 457: }
458: return $expression;
1.20 www 459: }
460:
1.6 www 461: sub msgtexconverted {
1.39 raeburn 462: my ($message,$email) = @_;
1.17 albertel 463: $errorstring='';
1.25 www 464: my $outmessage='';
465: my $tex=0;
1.79 albertel 466: foreach my $fragment (split(/(?:\<\;|\<)\/*m\s*(?:\>\;|\>)/i,$message)) {
1.25 www 467: if ($tex) {
1.30 albertel 468: if ($email) {
1.79 albertel 469: $outmessage.='</pre><tt>'.&to_convert($fragment).'</tt><pre>';
470: $tex=0;
1.30 albertel 471: } else {
1.79 albertel 472: $outmessage.=&to_convert($fragment);
473: $tex=0;
1.30 albertel 474: }
1.25 www 475: } else {
1.79 albertel 476: $outmessage.=&smiley($fragment);
477: $tex=1;
1.25 www 478: }
479: }
1.64 albertel 480: $message=$outmessage; $outmessage=''; $tex=0;
1.79 albertel 481: foreach my $fragment (split(/(?:\<\;|\<)\/*algebra\s*(?:\>\;|\>)/i,
482: $message)) {
1.64 albertel 483: if ($tex) {
1.113 raeburn 484: my $algebra = &algebra($fragment, 'web', undef, undef, undef, 'tth');
1.64 albertel 485: if ($email) {
1.103 faziophi 486: $outmessage.='</pre><tt>'.$algebra.'</tt><pre>';
1.79 albertel 487: $tex=0;
1.64 albertel 488: } else {
1.103 faziophi 489: $outmessage.=$algebra;
1.79 albertel 490: $tex=0;
1.64 albertel 491: }
492: } else {
1.103 faziophi 493: $outmessage.=$fragment;
1.79 albertel 494: $tex=1;
1.64 albertel 495: }
496: }
1.24 albertel 497: if (wantarray) {
1.25 www 498: return ($outmessage,$errorstring);
1.24 albertel 499: } else {
1.25 www 500: return $outmessage.$errorstring;
1.24 albertel 501: }
1.1 harris41 502: }
503:
1.44 albertel 504: sub algebra {
1.49 albertel 505: use AlgParser;
1.103 faziophi 506: my ($string,$target,$style,$parstack,$safeeval,$tth)=@_;
1.44 albertel 507: my $parser = new AlgParserWithImplicitExpand;
1.103 faziophi 508: if ($tth eq 'tth') {&init_tth();}
1.46 albertel 509: $string=&prepare_algebra($string);
1.44 albertel 510: my $ret = $parser->parse($string);
511: my $result='['.&mt('Algebra unconverted due to previous errors').']';
512: if ( ref($ret) ) {
1.50 albertel 513: #$parser->tostring();
1.44 albertel 514: $parser->normalize();
515: my $latex=$parser->tolatex();
1.49 albertel 516: $latex=&postprocess_algebra($latex);
1.58 albertel 517: if ($style eq 'display') {
518: $latex='$$'.$latex.'$$x';
519: } else {
1.61 albertel 520: # style is 'inline'
1.58 albertel 521: $latex='\\ensuremath{'.$latex.'}';
522: }
1.44 albertel 523: if ($target eq 'web' || $target eq 'analyze') {
1.89 droeschl 524: my $display=&Apache::lonxml::get_param('display',$parstack,$safeeval);
525: $result = &converted(\$latex,$display);
526: # $result = &converted(\$latex);
1.44 albertel 527: } else {
528: $result = $latex;
529: }
530: } else {
531: &Apache::lonxml::error($parser->{'htmlerror'});
532: }
533: }
534:
1.46 albertel 535: sub prepare_algebra {
536: my ($string)=@_;
537:
1.50 albertel 538: # makes the decision about what is a minus sign easier supposedly
1.57 albertel 539: $string =~ s/(\<\>|\<\=|\>\=[\=\>\<] *)-/$1 zeroplace -/g;
1.48 albertel 540:
1.46 albertel 541: return $string;
542: }
543:
544: sub postprocess_algebra {
545: my ($string)=@_;
1.48 albertel 546:
1.50 albertel 547: # moodle had these and I don't know why, ignoring them for now
1.51 albertel 548: # $string =~s/\\fun/ /g;
1.47 albertel 549:
1.51 albertel 550: # sqrt(3,4) means the 4 root of 3
1.52 albertel 551: $string =~s/\\sqrt{([^,]+),([^\}]+)}/\\sqrt[$2]{$1}/gs;
552:
1.53 albertel 553: # log(3,4) means the log base 4 of 3
554: $string =~s/\\log\\left\((.+?),(.+?)\\right\)/\\log_{$2}\\left($1\\right)/gs;
555:
1.54 albertel 556: # log(3,4) means the log base 4 of 3
557: $string =~s/\\((?:sin|cos|tan|sec|csc|cot)(?:h)?)\\left\((.+?),(.+?)\\right\)/\\$1^{$3}\\left($2\\right)/gs;
558:
1.55 albertel 559: # int(3,a,b) integral from a to b of 3
560: $string =~s/\\int\\left\((.+?),(.+?),(.+?)\\right\)/\\int_{$2}^{$3}\\left($1\\right)/gs;
561:
562: # int( ... dx) -> ...
563: $string =~s/\\int\\left\((.+?)d[a-z]\\right\)/$1/gs;
1.51 albertel 564:
1.56 albertel 565: #
566: $string =~s/\\lim\\left\((.+?),(.+?),(.+?)\\right\)/\\lim_{$2\\to $3}$1/gs;
1.46 albertel 567: return $string;
568: }
1.114 raeburn 569:
570:
1.1 harris41 571: 1;
572: __END__
573:
574:
1.91 jms 575: =pod
576:
577: =head1 NAME
578:
579: Apache::lontexconvert;
580:
581: =head1 SYNOPSIS
582:
583: Access to tth/ttm
584:
585: This is part of the LearningOnline Network with CAPA project
586: described at http://www.lon-capa.org.
587:
588:
589: =head1 SUBROUTINES
590:
591: =over
592:
593: =item init_tth()
594:
595: Header
596:
597: =item convert_real()
598:
599: we need this routine because &converted can get called from inside
600: of the safespace (through &xmlparse('<m>stuff</m>') which doesn't
601: allow the opcode for alarm, so we need to compile this before we get
602: into the safe space since opcode checks only occur at compile time
603:
604: =item tth_converted()
605:
606:
607: =item clean_out_math_mode()
608:
609:
610: =item displaystyle()
611:
612:
1.109 dseaton 613: =item MathJax_converted()
1.91 jms 614:
615: =item tex_engine()
616:
617: =item init_math_support()
618:
1.105 raeburn 619: =item mimetex_valign()
620:
621: Makes a HEAD call to /cgi-bin/mimetex.cgi via IO:: to retrieve the
622: vertical alignment, before the subsequent call to mimetex_converted()
623: which generates the <img> tag and the corresponding image.
624:
625: Input: 1. $esc_texstring (escaped TeX to be rendered by mimetex).
626: Output: 1. $valign - number of pixels: positive or negative integer
627: which will be included in <img> tag for mimetex image to
628: support vertical alignment of image within a line of text.
629:
630: If a server is running SSL, and Apache rewrite rules are in place
631: to rewrite requests for http to https, modification will most likely
632: be needed for pass through for HEAD requests for /cgi-bin/mimetex.cgi.
633:
634: Example rewrite rules which rewrite all http traffic to https,
635: except HEAD requests for /cgi-bin/mimetex.cgi are:
636:
637: <IfModule mod_rewrite.c>
638: RewriteEngine On
639: RewriteLogLevel 0
640:
641: RewriteCond %{HTTPS} off
642: RewriteCond %{HTTP:Host} (.*)
643: RewriteCond %{REQUEST_METHOD} !HEAD
644: RewriteRule ^/(.*) https://%1/$1 [R=301,L]
645:
646: RewriteCond %{HTTPS} off
647: RewriteCond %{HTTP:Host} (.*)
648: RewriteCond %{REQUEST_METHOD} HEAD
649: RewriteCond %{REQUEST_URI} !^/cgi-bin/mimetex.cgi
650: RewriteRule ^/(.*) https://%1/$1 [R=301,L]
651: </IfModule>
1.91 jms 652:
653: =item mimetex_converted()
654:
655:
656: =item converted()
657:
658:
659: =item to_convert()
660:
661: message display
662:
663: =item smiley()
664:
665: ???
666:
667: =item msgtexconverted()
668:
669: =item algebra()
670:
671: =item prepare_algebra()
672:
673: =item postprocess_algebra()
1.1 harris41 674:
1.91 jms 675: =back
1.1 harris41 676:
1.91 jms 677: =cut
1.1 harris41 678:
679:
680:
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>