There are tons of tools for converting PDF pictures to EPS pictures in Linux.
The pdf2ps command is a good one.
It produces EPS pictures without losing much resolution.
The general purpose tools convert
(from the ImageMagick package) does not produce as good quality EPS figures.
Graphics in LaTeX
-
Generally PDF figures are preferred for LaTeX code.
-
There are many useful commands in Linux for converting between different types of figures, e.g.,
convert,pdf2ps, etc. So it does not matter much which types of figures you produce. You can always convert them into other format when needed. -
The …
Useful Packages and Commands for LaTex

Math Packages
- \usepackage{amssymb}
- popular math fonts
- \usepackage{dsfont}
\mathdsfont
- \usepackage{bm} % bold math symbols
- bold math symbols
- \usepackage{amsmath}
- math formulas.
- \usepackage{amsthm}
- theorem environments
- proof enviroment
List Packages
- \usepackage{enumerate}
- universal list
Graphics Packages
- \usepackage{ifpdf}
- allow including figures without extensions and select the right type of …