MakeIndex, Nomenclature, Glossaries and Acronyms"Couldn't find input index file" error using TeXnicCenter

Information and discussion about MakeIndex - the tool to generate subject indices for LaTeX documents.
Post Reply
viga01
Posts: 5
Joined: Thu Oct 21, 2010 6:44 am

"Couldn't find input index file" error using TeXnicCenter

Post by viga01 »

Hello there,
I am a complete begineer with Latex. I have been reading a lot and checked a bunch of topics on this forum. I am using TeXnicCenter, and MiKTeX 2.8 on Windows XP.

I can't make any glossaries, index or nomenclature works. I am copying others people code, but nothing works. I feel the issue is outside the code itself.

Here is an example that I have been trying to do:

Code: Select all

\documentclass[a4paper,12pt]{article}
\usepackage[colorlinks=true,linkcolor=red]{hyperref}
\usepackage{glossaries}

\makeglossaries
\begin{document}

\newglossaryentry{hope}{name=hope,description={I am loosing it!}}
I hope it could work \gls{hope}!!!

\printglossaries
\end{document}
I am getting the following message:
"Couldn't find input index file C:\test3\test3 nor C:\test3\test3.idx"

Many thanks in advance if someone can help me!

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org
LaTeX Beginner's Guide LaTeX Cookbook LaTeX TikZ graphics TikZによるLaTeXグラフィックス
Montag
Posts: 340
Joined: Wed Jul 15, 2009 9:25 am

"Couldn't find input index file" error using TeXnicCenter

Post by Montag »

Code: Select all

\makeindex
is missing. Also make sure the output profile uses the makeindex.exe correctly. :)
OS: Win 7 64-bit LaTeX: MikTeX 2.9 64-bit Editor: TXC 1 RC1
viga01
Posts: 5
Joined: Thu Oct 21, 2010 6:44 am

"Couldn't find input index file" error using TeXnicCenter

Post by viga01 »

I think I found how to do it using Windows command prompt, using this Know How Article.
I am close to give up with TeXnicCenter...
Montag
Posts: 340
Joined: Wed Jul 15, 2009 9:25 am

"Couldn't find input index file" error using TeXnicCenter

Post by Montag »

I tried to read through that tutorial too once upon a time. It's really big and informative; but for me, it was quite the overachievement and I'll probably never use "glossaries", "acronym" has been sufficent for me so far. You should definitely look for acronym or similar packages before giving up on TXC.

You still haven't reported on progress on how to deal with the output profile. So what's your status there? :)
OS: Win 7 64-bit LaTeX: MikTeX 2.9 64-bit Editor: TXC 1 RC1
viga01
Posts: 5
Joined: Thu Oct 21, 2010 6:44 am

Re: "Couldn't find input index file" error using TeXnicCente

Post by viga01 »

I will be testing this again issue in a few weeks... thanks for the follow up and sorry, I am currently in the lab getting data! :)
User avatar
sommerfee
Posts: 503
Joined: Mon Apr 09, 2007 4:20 pm

"Couldn't find input index file" error using TeXnicCenter

Post by sommerfee »

viga01 wrote:I am close to give up with TeXnicCenter...
If you are a beginner of LaTeX I would recommend giving up TeXnicCenter and using TeXworks instead anyway. (TeXworks is already installed on your computer.)
mariamelansary
Posts: 4
Joined: Sun Oct 09, 2011 7:34 am

"Couldn't find input index file" error using TeXnicCenter

Post by mariamelansary »

Montag wrote:

Code: Select all

\makeindex
is missing. Also make sure the output profile uses the makeindex.exe correctly. :)
where should I add \makeindex code??
User avatar
0.8.15
Posts: 16
Joined: Mon May 26, 2008 10:39 am

"Couldn't find input index file" error using TeXnicCenter

Post by 0.8.15 »

What "mariamelansary" means is that you can work with:

Code: Select all

\usepackage{makeidx}
\makeindex
instead of the package glossary, I guess
viga01
Posts: 5
Joined: Thu Oct 21, 2010 6:44 am

Re: "Couldn't find input index file" error using TeXnicCente

Post by viga01 »

Hi everyone, after trying to solve this problem on different computers, I figured out that the problem was solved after I installed Pearl...
jasperkas
Posts: 1
Joined: Wed Sep 18, 2019 4:02 pm

"Couldn't find input index file" error using TeXnicCenter

Post by jasperkas »

I just solved the same error by running Update in MiKTeX.

I remembered that the error arose due to a failed update yesterday and restarted my PC to solve the update error.
Post Reply