Glossare mit Abschnitt als Zähler funktionieren im Anhang nicht

Glossare mit Abschnitt als Zähler funktionieren im Anhang nicht

Ich möchte das Glossarpaket mit der Option verwenden counter=section. Das funktioniert gut, solange ich keine Glossareinträge im Anhang verwende. Es scheint, dass der Abschnittszähler durch den \appendixBefehl zurückgesetzt wird. Es stellt sich heraus, dass Abschnitt A.1 1.1 heißt, B.1 2.1 und so weiter.

Ich verwende das Skript „makeglossaries“ und ein Minimalbeispiel ist:

\documentclass{report}

\usepackage[counter=section]{glossaries}

\makeglossaries

\newglossaryentry{gte}{name=GTE,description={Glossary Test Entry}}

\begin{document}

\chapter{Normal chapter}

\section{Normal section}

This is section 1.1 without a glossary entry.

\chapter{Normal chapter}

\section{Normal section}

A \gls{gte} in section 2.1.

\appendix

\chapter{Appendix chapter}

\section{Appendix section}

A \gls{gte} in appendix A.1.

\printglossary

The glossary indicates appearance in 1.1 and 2.1 instead of 2.1 and A.1.

\end{document}

Antwort1

Aktualisieren Sie auf glossariesVersion 3.05 (sobald es die CTAN-Spiegel durchlaufen hat).

verwandte Informationen