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}
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)
Thanks,
Lex