GeneralProblem in Document Compilation

LaTeX specific issues not fitting into one of the other forums of this category.
Post Reply
swagatopablo
Posts: 16
Joined: Sun Mar 25, 2012 10:57 am

Problem in Document Compilation

Post by swagatopablo »

I am using Kile 2.9.60 in Windows platform. I had the impression that to compile a source file, the BibTeX database and the EPS figures being present in the folder are enough. But whenever I am trying to compile my source file, named suppose "xyz.tex" it's giving me an error like "xyz.idx" not found. Please tell me what's an .idx file and where can I get it if it's so necessary for compilation?

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

Stefan Kottwitz
Site Admin
Posts: 10348
Joined: Mon Mar 10, 2008 9:44 pm

Problem in Document Compilation

Post by Stefan Kottwitz »

Hi,

welcome to the board!

The .idx is a file which contains index entries, it's produced by \makeindex. If you don't create an index, check your Kile settings so that it's not running MakeIndex, and if your document contains such lines

Code: Select all

\usepackage{makeidx}
\makeindex
and

Code: Select all

\printindex
remove them. If you would like to create an index, you may need them, but you did not mention an index at all.

Stefan
LaTeX.org admin
swagatopablo
Posts: 16
Joined: Sun Mar 25, 2012 10:57 am

Re: Problem in Document Compilation

Post by swagatopablo »

Vielen dank Stefan.
Post Reply