How to make the output of Maxima cleaner?
I want to make use of Maxima as the backend to solve some computations used in my LaTeX input file. I did the following steps. Step 1 Download and install Maxima. Step 2 Create a batch file named cas.bat (for example) as follows. rem cas.bat echo off set PATH=%PATH%;"C:\Program Files (x86)\Maxima-5.31.2\bin" maxima --very-quiet -r %1 > solution.tex Save the batch in the same directory in which your input file below exists. It is just for the sake of simplicity. Step 3 Create the input file named main.tex (for example) as follows. % main.tex \documentclass[preview,border=12pt,12pt]{standalone}