Search found 3 matches

by jerryf
Thu Jul 21, 2016 8:54 pm
Forum: MakeIndex, Nomenclature, Glossaries and Acronyms
Topic: Using \makeindex \printindex
Replies: 1
Views: 18007

Using \makeindex \printindex

I am using TeXworks, which I think uses LaTeX2e.
I am working on a book, but can't seem to make the index show up in the PDF.
A simple program I use would look like:

\documentclass[12pt,latexsym]{book}
\usepackage{makeidx}
\begin{document}
I want to build\index{build} an index.
\printindex
\end ...
by jerryf
Sun Sep 08, 2013 3:41 am
Forum: Graphics, Figures & Tables
Topic: Unknown Graphics Extension for EPS File
Replies: 4
Views: 37317

Unknown Graphics Extension for EPS File

I found the answer using a search engine.
It seems you're using graphics in the EPD format. A relatively easy way of solving this problem is loading \usepackage{epstopdf} in your preamble and compiling with pdfLaTeX as usual. This will convert any EPS graphics to PDF first, you'll see the actual ...
by jerryf
Sun Sep 08, 2013 12:38 am
Forum: Graphics, Figures & Tables
Topic: Unknown Graphics Extension for EPS File
Replies: 4
Views: 37317

Unknown Graphics Extension for EPS File

I get this error message when trying to include an EPS graphics.

Code: Select all

LaTeX Error: Unknown graphics extension: .eps.
This is a sample document.

Code: Select all

\documentclass{article}
\usepackage{graphics}

\begin{document}
  \includegraphics{sears1a.eps}
\end{document}
What can I do?