tex1()
seems to return all strings as follow:
tex1(hello);
{\it hello}
tex1("hello");
\mbox{ hello }
What variable must one use to change this handling via texput
? e.g. if I would just like it to print strings literally? I'm using other Maxima commands (like printf
and concat
to produce strings that are then passed to tex1
, and occasionally the default handling is causing issues.
I tried texput(""", ...)
and texput("''", ...)
; the first wasn't accepted, the 2nd was, but did not change the output. I really have no clue for the non-quoted strings.