From: Richard F. <fa...@gm...> - 2024-10-09 23:21:47
|
Just using a fixed-width font helps. e.g. (%i4) hbar: unicode("latin small letter h with stroke"); (%o4) ħ (%i5) 1/hbar * M; [ a b ] [ ] [ c d ] (%o5) -------- ħ RJF On Wed, Oct 9, 2024 at 4:14 PM Robert Dodier <rob...@gm...> wrote: > On Wed, Oct 9, 2024 at 4:09 PM ehm <eri...@gm...> wrote: > > > (%i4) hbar: unicode("latin small letter h with stroke"); > > Pretty sure what's going on is that hbar is now a string, not a > symbol. Try hbar: parse_string(unicode(...)) to get a symbol from a > string. (parse_string parses any Maxima expression, in this case just > returning the symbol since that's all there is in the string.) > > best > > Robert > > > _______________________________________________ > Maxima-discuss mailing list > Max...@li... > https://lists.sourceforge.net/lists/listinfo/maxima-discuss > |