> Why doesn't the subscripted Greek letter rho[b] display properly?? Is
> this a bug, or am I doing it wrong?
I suspect this is a bug in wxMaxima, which seems to expect different
Lisp symbols than the Maxima parser actually produces in cases like
this. "rho[b]", "rho(b)", "rho" and "'rho" all use the lisp symbol
$RHO, but "'rho[b]" and "'rho(b)" use the nounified lisp symbol %RHO.
However, wxMaxima seems to expect the noun form to be $%RHO. Most other
Greek symbols have the same problem.
For now, you can work around this by typing the following commands (the
second one is only needed if you would like to render 'rho[b] to TeX):
:lisp (defprop %rho "<g>%rho</g>" wxxmlword)
:lisp (defprop %rho "\\rho" texword)
I have attached a suggested patch to wxmathml.lisp (part of wxMaxima) to
fix this problem for the other Greek letters as well. On the other
hand, mactex.lisp (part of Maxima) makes no attempt to render Greek
symbols in noun form. Do we want to add properties like the second line
above? I'm not sure.
Best,
Mark
-------------- next part --------------
A non-text attachment was scrubbed...
Name: wxmaxima-greek-fix.patch
Type: text/x-diff
Size: 6423 bytes
Desc: Patch to wxMaxima to fix rendering of Greek symbols in noun form
URL: <http://www.math.utexas.edu/pipermail/maxima/attachments/20111019/64c202aa/attachment.patch>