From: Chris S. <san...@us...> - 2005-07-05 13:36:08
|
Update of /cvsroot/stack/stack-1-0 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23546 Modified Files: chat_mathml.php Log Message: Index: chat_mathml.php =================================================================== RCS file: /cvsroot/stack/stack-1-0/chat_mathml.php,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** chat_mathml.php 5 Jul 2005 13:29:20 -0000 1.4 --- chat_mathml.php 5 Jul 2005 13:35:52 -0000 1.5 *************** *** 66,76 **** <p>This page allows you execute computer algebra system commands. </p> ! <p>You need to type in <tt>CASText</tt>. This is LaTeX code, with any text enclosed beteen two @'s being processed by the CAS. For example, try </p> <pre>The derivative of @ x^4/(1+x^4) @ is \[ @ diff(x^4/(1+x^4),x) @ \] - We can plot them both @plot([x^4/(1+x^4),diff(x^4/(1+x^4),x)],[x,-3,3])@ </pre> <?php include('stackstd.php'); --- 66,77 ---- <p>This page allows you execute computer algebra system commands. </p> ! <p>You need to type in plain text enclosed beteen two @'s being processed by the CAS. For example, try </p> <pre>The derivative of @ x^4/(1+x^4) @ is \[ @ diff(x^4/(1+x^4),x) @ \] </pre> + Please note, that LaTeX will break the system. Please only use simple text and CAS commands. + <?php include('stackstd.php'); *************** *** 200,210 **** @</tt> will do.</p> - <p> - <?php - echo stack_s("Anything between <html> stuff <html> structures is kept as HTML, and not - interpreted as LaTeX. This enables URL's to be included in the text, as well as external images etc."); - ?> - </p> - <a href="index.php">Stack home page</a> --- 201,204 ---- |