Welcome to Cadabra Q&A, where you can ask questions and receive answers from other members of the community.
+1 vote

Hi all. I've a cnb file which takes about 20 minutes to run, and the GUI get stacked around while calculating.

I'd like to be able of run it from the CLI.

After a few minutes I came out with:

cadabra2cadabra file.cnb inputfile

takes the code blocks from the notebook and writes a text file called inputfile. Then,

cadabra2 inputfile > output

returns a text file output with the results. However, it uses non ascii symbols.

Is it possible to get an output that uses LaTeX form instead of non-ascii symbols?

in General questions by (13.2k points)

1 Answer

+1 vote
 
Best answer

Set the CADABRA_NO_UNICODE environment variable (to anything non-empty).

by (76.6k points)
selected by

Thank you @kasper for the quick answer. For completeness, the command to set the variable is: export CADABRA_NO_UNICODE="t". I included it into my .bashrc file!

...