From: Chris S. <san...@us...> - 2005-06-21 17:37:39
|
Update of /cvsroot/stack/stack-1-0/scripts/maxima In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv17304/scripts/maxima Modified Files: stackmaxima.mac stacktex.lisp Log Message: Index: stackmaxima.mac =================================================================== RCS file: /cvsroot/stack/stack-1-0/scripts/maxima/stackmaxima.mac,v retrieving revision 1.14 retrieving revision 1.15 diff -C2 -d -r1.14 -r1.15 *** stackmaxima.mac 20 Jun 2005 15:42:54 -0000 1.14 --- stackmaxima.mac 21 Jun 2005 14:52:25 -0000 1.15 *************** *** 50,53 **** --- 50,54 ---- e:exp(1); pi:%pi; + ALIAS(ln,log); /* ********************************** */ Index: stacktex.lisp =================================================================== RCS file: /cvsroot/stack/stack-1-0/scripts/maxima/stacktex.lisp,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** stacktex.lisp 13 Mar 2005 15:03:17 -0000 1.1 --- stacktex.lisp 21 Jun 2005 14:52:25 -0000 1.2 *************** *** 66,67 **** --- 66,107 ---- (defprop $texcolor tex-texcolor tex) + + ;; Changed log to ln, and other things + + (mapc #'tex-setup + '( + (%acos "\\cos^{-1} ") ; CJS, changed! + (%asin "\\sin^{-1} ") ; CJS, changed! + (%atan "\\tan^{-1} ") ; CJS, changed! + ; Latex's arg(x) is ... ? + (%cos "\\cos ") + (%cosh "\\cosh ") + (%cot "\\cot ") + (%coth "\\coth ") + (%csc "\\csc ") + ; Latex's "deg" is ... ? + (%determinant "\\det ") + (%dim "\\dim ") + (%exp "\\exp ") + (%gcd "\\gcd ") + ; Latex's "hom" is ... ? + (%inf "\\inf ") ; many will prefer "\\infty". Hmmm. + ; Latex's "ker" is ... ? + ; Latex's "lg" is ... ? + ; lim is handled by tex-limit. + ; Latex's "liminf" ... ? + ; Latex's "limsup" ... ? + (%ln "\\ln ") + (%log "\\ln ") ; CJS, changed! + (%max "\\max ") + (%min "\\min ") + ; Latex's "Pr" ... ? + (%sec "\\sec ") + (%sin "\\sin ") + (%sinh "\\sinh ") + ; Latex's "sup" ... ? + (%tan "\\tan ") + (%tanh "\\tanh ") + ;; (%erf "{\\rm erf}") this would tend to set erf(x) as erf x. Unusual + ;(%laplace "{\\cal L}") + )) ;; etc |