I want to include some Mathematica code in a LaTeX document.
It's along the lines of
f[a_,b_]:=a^2+b^2+4b^3+25a*b*c ;
However, when I build my PDF, the _ and ^ always render. Is there a way to get it to just show up as it shows above?
|
I want to include some Mathematica code in a LaTeX document. It's along the lines of
However, when I build my PDF, the |
||||
|
|
|
As rdhs mentionned, you can use the listings package. A sample example is:
Note the verb like delimiters for lstinline. One thing however, the listings manual indicates verb like delimiters, but in all of my work I use the usual { and } and it works fine (maybe a quirk, but I find it easier to read and will continue using it as long as possible)
There are other ways also. For example the minted package does what you what, but it requires that you install Pygments, which is a Python library. |
|||||||
|
|
Use |
|||
|
|
|
To include an image of your Mathematica code, you can evaluate the cell
and then select it (by clicking on the right square bracket
One advantage of this approach is that it will include the embedded Mathematica font, as well as the same spacing and layout as in the actual Mathematica display. If you which to get rid of the input/output indicators, you can either clip the image using |
|||
|
|