Generalglossaries | Fatal Error

LaTeX specific issues not fitting into one of the other forums of this category.
Post Reply
lkmuc
Posts: 1
Joined: Thu Jul 28, 2011 5:13 pm

glossaries | Fatal Error

Post by lkmuc »

Hello,

I just followed the instructions for setting up TeXnicCenter to work with the glossaries package at http://www.latex-community.org/index.ph ... Itemid=112. I am trying to create a list of acronyms, however, I will not be using them in text. My document looks like this:

Code: Select all

\documentclass[bibtotoc,liststotoc,BCOR5mm,DIV12]{scrbook} 
\usepackage[latin1]{inputenc}
\usepackage{graphicx}
\usepackage{url}
\usepackage{hyperref}
\usepackage{listings}
\usepackage{bold-extra}
\usepackage{array}
\usepackage{algorithmic}
\usepackage[acronym]{glossaries}

\graphicspath{{./Bilder/}}

\makeglossaries

\newacronym{lvm}{LVM}{Logical Volume Manager}

\input{hyphenation}

\begin{document}

% ---------------------------------------------------------------
\frontmatter
\include{./Titel/titel-lmu}
\thispagestyle{empty}
\cleardoublepage
\tableofcontents

% ---------------------------------------------------------------
\mainmatter
\input{chapter1}

% ---------------------------------------------------------------
\backmatter
\printglossaries
\listoftables
\listoffigures
\bibliographystyle{alpha}
\bibliography{./Bib/stud77}
\end{document}
When running everything in TeXnicCenter, I get the following errors:

Code: Select all

)
! Incomplete \iffalse; all text was ignored after line 126.
<inserted text> 
                \fi 
l.55   \input{chapter2}
                       
The file ended while I was skipping conditional text.
This kind of error happens when you say `\if...' and forget
the matching `\fi'. I've inserted a `\fi'; this might work.

)
! Incomplete \iffalse; all text was ignored after line 126.
<inserted text> 
                \fi 
<*> ...itung/stud77/Dokumentation/Latex/stud77.tex
                                                  
The file ended while I was skipping conditional text.
This kind of error happens when you say `\if...' and forget
the matching `\fi'. I've inserted a `\fi'; this might work.

! Emergency stop.
<*> ...itung/stud77/Dokumentation/Latex/stud77.tex
                                                  
*** (job aborted, no legal \end found)
Actually this would happen before I even had everything setup but just added the "\usepackage[acronym]{glossaries}" line to my document. I'm using MiKTeX 2.9. What's going on?

Thanks,

Lex

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

Re: glossaries | Fatal Error

Post by Stefan Kottwitz »

Hi Lex,

there's no error in the code.
Could you try to post an example, which raises this error too when compiled? Or is your problem already solved?

Stefan
LaTeX.org admin
Post Reply