File:  [LON-CAPA] / loncom / html / adm / dragmath / applet / Latex.html
Revision 1.1: download - view: text, annotated - select for diffs
Fri May 30 16:04:37 2008 UTC (16 years, 2 months ago) by www
Branches: MAIN
CVS tags: version_2_9_X, version_2_9_99_0, version_2_9_1, version_2_9_0, version_2_8_X, version_2_8_99_1, version_2_8_99_0, version_2_8_2, version_2_8_1, version_2_8_0, version_2_7_X, version_2_7_99_1, version_2_7_99_0, version_2_7_1, version_2_7_0, version_2_6_99_1, version_2_6_99_0, version_2_11_0_RC1, version_2_10_X, version_2_10_1, version_2_10_0_RC2, version_2_10_0_RC1, version_2_10_0, loncapaMITrelate_1, language_hyphenation_merge, language_hyphenation, bz6209-base, bz6209, bz5969, bz2851, PRINT_INCOMPLETE_base, PRINT_INCOMPLETE, HEAD, GCI_3, GCI_2, GCI_1, BZ5971-printing-apage, BZ5434-fox, BZ4492-merge, BZ4492-feature_horizontal_radioresponse
Bug #5713: Dragmath

    1: <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
    2: <html>
    3: <head>
    4: 
    5: <title>DragMath Latex Example</title>
    6: 
    7: <script>
    8: function renderLatex() {
    9:   var ans = document.DragMath.getMathExpression();  
   10:   var source = '<html>'
   11:          + '<body>'
   12:          + '<h4>Latex Syntax: '
   13:          + ans
   14:          + '</h4>'
   15:          + '<applet code="HotEqn.class" codebase="HotEqn" archive="HotEqn.jar" height="300" width="600" name="my equation">'
   16:          + '<param name="equation" value="'	
   17:          + ans
   18:          + '"/>'
   19:          + '</applet>'
   20:          + '</body>'
   21:          + '</html>'
   22:          + '';
   23: 
   24:   var target = document.getElementById('outputID');
   25:     var doc = target.contentDocument;
   26:         if (doc == undefined || doc == null)
   27:             doc = target.contentWindow.document;
   28:   doc.open();
   29:   doc.write(source);
   30:   doc.close();
   31: 
   32:  
   33: }
   34: </script>
   35: 
   36: </head>
   37: <body>
   38: 
   39: <div id="mainContent">
   40: 
   41: 
   42: <DIV align=left><FONT face=Arial color=#000080 
   43: size=6><STRONG>DragMath Latex Example</STRONG></FONT></DIV>
   44: <br><br>
   45: 
   46: <applet name="DragMath" codebase="classes" code="Display.MainApplet.class" archive="Project.jar,AbsoluteLayout.jar,swing-layout-1.0.jar,jdom.jar,jep.jar" width=540 height=333>
   47: <param name=language value="en">
   48: <param name=showOutputToolBar value="false">
   49: <param name=outputFormat value="Latex">
   50: To use this page you need a Java-enabled browser. Download the latest Java plug-in from <a href="http://www.java.com">Java.com</a>
   51: </applet >
   52: <br>
   53: 
   54: <form>
   55: <input type='button' value='Render Latex' onclick='renderLatex(); return true;' />
   56: </form>
   57: 
   58: <H2>Latex Rendering:</H2>
   59: 
   60: <iframe id='outputID' src='' width='98%' height='150'>
   61: </iframe>
   62: 
   63: </div>
   64: <br>
   65: Latex rendering performed by freeware Java applet <a href="http://www.atp.ruhr-uni-bochum.de/VCLab/software/HotEqn/HotEqn.html">HotEqn </a>
   66: </body>
   67: </html>

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>