mschraff
05-11-2007, 13:30
Bei mir werden in meinem Latex-Dokument die Seitenangaben sowohl beim Index als auch in dem Glossar falsch angezeigt. D.h. es wird immer eine Seitenzahl mehr angezeigt. Befindet sich der Eintrag auf Seite 3, so steht im Index und Glossar Seite 4.
Das Inhaltsverzeichnis und die Liste der Tabellen hingegen zeigen die richtigen Seitenzahlen an.
Hier mal ein kurzer Auszug aus meiner Datei:
% Index-Pakete =============
\usepackage{makeidx}
\makeindex
% Glossar ================
\usepackage{glossary}
\makeglossary
\newglossarytype{notation}{not}{ntn}
% Tabellen ================
\usepackage{array}
\usepackage[table]{xcolor}
\usepackage{booktabs}
% Dokument ==============
\begin{document}
Indexeintrag\index{EINTRAG}
Glossareintrag\glossary{name=GLOSSAR,description=E intrag ins Glossar}
Tabelle
\begin{table}[h]
\label{tab:devisenhandelsumsätze}
\begin{tabular}[t]{|l|| *{3}{c|}}
TABELLENINHALT
\end{tabular}
\end{table}
% Anhänge ======================
\listoffigures
\listoftables
\clearpage
% Glossar -------------------------------------------
\printglossary
% Definition des Glossars
\renewcommand{\glossaryname}{Notation}
\renewcommand{\glsnumformat}[1]{} % don't display number
%remove commas and number hyphens for notation entries
\renewcommand{\delimN}{}
\renewcommand{\delimR}{}
\renewcommand{\glodelim}{}
% Index ---------------------------------------------
\printindex
\clearpage
% Bibliographie ------------------------------------
\bibliographystyle{plain}
\bibliography{bibliography/bibfile.bib}
Das Inhaltsverzeichnis und die Liste der Tabellen hingegen zeigen die richtigen Seitenzahlen an.
Hier mal ein kurzer Auszug aus meiner Datei:
% Index-Pakete =============
\usepackage{makeidx}
\makeindex
% Glossar ================
\usepackage{glossary}
\makeglossary
\newglossarytype{notation}{not}{ntn}
% Tabellen ================
\usepackage{array}
\usepackage[table]{xcolor}
\usepackage{booktabs}
% Dokument ==============
\begin{document}
Indexeintrag\index{EINTRAG}
Glossareintrag\glossary{name=GLOSSAR,description=E intrag ins Glossar}
Tabelle
\begin{table}[h]
\label{tab:devisenhandelsumsätze}
\begin{tabular}[t]{|l|| *{3}{c|}}
TABELLENINHALT
\end{tabular}
\end{table}
% Anhänge ======================
\listoffigures
\listoftables
\clearpage
% Glossar -------------------------------------------
\printglossary
% Definition des Glossars
\renewcommand{\glossaryname}{Notation}
\renewcommand{\glsnumformat}[1]{} % don't display number
%remove commas and number hyphens for notation entries
\renewcommand{\delimN}{}
\renewcommand{\delimR}{}
\renewcommand{\glodelim}{}
% Index ---------------------------------------------
\printindex
\clearpage
% Bibliographie ------------------------------------
\bibliographystyle{plain}
\bibliography{bibliography/bibfile.bib}