How would I produce output from ShowSolution in Latex form?
For example, if I run the following command.
$ maple2022/bin/maple -q problem.mpl
where problem.mpl is the following:
with(Student[Calculus1]):
ShowSolution(Diff(ln(x),x));
I get the following output.
Differentiation Steps
Diff(ln(x),x)
▫ 1. Apply the natural logarithm rule
◦ Recall the definition of the natural logarithm rule
Diff(ln(x),x) = x^(-1)
This gives:
x^(-1)
I want the solver to show the steps in Latex form. How can I achieve this?