How do I include a MATLAB figure in a LaTeX document?
    236 visualizaciones (últimos 30 días)
  
       Mostrar comentarios más antiguos
    
    MathWorks Support Team
    
 el 27 de Jun. de 2009
  
    
    
    
    
    Editada: MathWorks Support Team
    
 el 10 de Oct. de 2025 a las 10:23
            I would like to include a MATLAB figure in a LaTeX document.
Respuesta aceptada
  MathWorks Support Team
    
 el 10 de Oct. de 2025 a las 0:00
        
      Editada: MathWorks Support Team
    
 el 10 de Oct. de 2025 a las 10:23
  
      The best way to do this would be to export your figure into an Encapsulated PostScript (EPS) format file and then include the EPS file in the LaTeX document. You can export a figure into a EPS format using the PRINT command as follows:
plot(1:10)
print -deps epsFig
This will generate a file called epsFig.eps in your current working directory. You can then include this eps file in your LaTeX document.
One method to include an EPS figure in your LaTeX 2E document is as follows:
1. Include the following line before the \begin{document} statement
\usepackage{graphicx}
2. Use the following template code to include any figure:
\begin{figure}
\centering
\includegraphics{Figure name without .eps extension}
\caption{Insert caption}
\end{figure}
For more information on LaTeX, refer to the TeX Users Group at https://tug.org/ or the Comprehensive TeX Archive Network at https://www.ctan.org/
1 comentario
  Walter Roberson
      
      
 el 14 de Mayo de 2019
				Youwei Liang comments to Kashif:
"print -depsc epsFig" for color figure
Más respuestas (1)
  Julian Hapke
      
 el 2 de Mayo de 2023
        Those plots integrate into the whole LaTeX style very well.
0 comentarios
Ver también
Categorías
				Más información sobre Printing and Saving en Help Center y File Exchange.
			
	Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!