0% found this document useful (0 votes)
26 views

Using Eps in Latex

To include .eps files in LaTeX documents, the graphicx and epstopdf packages must be included. The .eps file can then be inserted into the document using the \includegraphics command within a figure environment, and a caption provided to label the figure. The sample code provided demonstrates how to insert an .eps plot file named ex01.eps into a LaTeX document.

Uploaded by

Erdet Nasufi
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
26 views

Using Eps in Latex

To include .eps files in LaTeX documents, the graphicx and epstopdf packages must be included. The .eps file can then be inserted into the document using the \includegraphics command within a figure environment, and a caption provided to label the figure. The sample code provided demonstrates how to insert an .eps plot file named ex01.eps into a LaTeX document.

Uploaded by

Erdet Nasufi
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 2

Using .

eps les in LaTeX


Erdet Nasu
November 2015
Packages needed:

graphicx and epstopdf.

%---------------------------%
\usepackage{graphicx}
\usepackage{epstopdf}
...
...
\begin{figure}[h]
\centering
\includegraphics{ex01.eps}
\caption{eps plot.}
\end{figure}
%---------------------------%

12

x 10

0.5
0
0.5
1
1.5

50

100

150

Figure 1: eps plot.

200

250

You might also like