Dustinsfl
- 2,217
- 5
How can I put a Mathematica plot in my Latex document?
To include a Mathematica plot in a LaTeX document, first, use the command \usepackage{graphicx} in the document header. Convert the Mathematica plot to EPS format by selecting the plot and using the Save Selection As option. Insert the plot into the LaTeX document using the figure environment with the \includegraphics command, specifying the EPS file name. This method ensures proper integration of graphics into LaTeX documents.
PREREQUISITESResearchers, academics, and technical writers who need to integrate Mathematica plots into LaTeX documents for publications or presentations.
\usepackage{graphicx}
\begin{figure}[H]
\begin{center}
\includegraphics{foo.eps}
\end{center}
\caption{Whatever text you want to accompany the figure goes here.}
\label{Fi:Whatever_you_want_to_refer_to_this_figure_as_later_in_your_document}
\end{figure}