Latest news 2024-10-15: New blog post: Tales for Our Times Book Launch.

Bug Tracker RSS feed

I’m currently working on a major new version of the datatool package. This may take a while. Please be patient. (Experimental version available for testing.)

ID 280🔗
Date: 2024-08-23 07:28:00
Last update: 2024-08-23 08:27:04
Status Open
Sign in if you want to bump this report.
Category glossaries-extra
Version 1.53
Summary toc = false results in pdf bookmark

Sign in to subscribe to notifications about this report.

Description

I'm using \RequirePackage[automake, toc = false]{glossaries-extra} as part of a beamer document.
The glossary is printed using \printglossary[style = listdotted, nogroupskip].
While the printed toc (\tableofcontents) indeed does not contain any entry from the glossary, the PDF bookmark toc overview gets another entry on section level named "Glossary". If I use the optional argument title = {}, the additional PDF bookmark toc entry still persists (just without a name tag).

From my point of view, the toc = false option should prevent another PDF toc bookmark entry for the glossary.

A quick search via Google and searching for some relevant keywords within the documation didn't helped to solve the issue which is why I dropping a bug report.

MWE

Download (1.59K)

\documentclass[aspectratio=169, usepdftitle=false, handout]{beamer}

\RequirePackage[automake, toc = false]{glossaries-extra}
\RequirePackage{hyperref}

\usetheme{Madrid}
\usecolortheme{dove}
\usefonttheme{professionalfonts}

\makeglossaries

\begin{document}

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%% Cover slide %%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\title{Test Title}
\date{}
\begin{frame}[plain]
    \titlepage
\end{frame}

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%% Outline / table of content %%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\begin{frame}{Outline}
    \tableofcontents
\end{frame}


\section{Test section}
\begin{frame}{Test frame}
    \begin{itemize}
        \item Test item
    \end{itemize}
\end{frame}

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%% English-German dictionary (via glossaries-extra package) %%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

\newglossaryentry{load}{
    name={load},
    description={Last / Belastung}
}

\newglossaryentry{copper}{
    name={copper},
    description={Kupfer}
}

\newglossaryentry{nameplate}{
    name={nameplate},
    description={Typenschild}
}

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%% Build glossary %%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

\begin{frame}[allowframebreaks]{English-German dictionary}
    \glsaddallunused
    \small
    \printglossary[style = listdotted, nogroupskip]
\end{frame}

\end{document}

Evaluation

Comments

0 comments.


Add Comment

Name (optional):

Are you human? Please confirm the bug report ID (which can be found at the top of this page) or login if you have an account.

Comment:


You can use the following markup:

Block:

[pre]Displayed verbatim[/pre]
[quote]block quote[/quote]

In line:

[tt]code[/tt]
[file]file/package/class name[/file]
[em]emphasized text[/em]
[b]bold text[/b]
[url]web address[/url] [sup]superscript[/sup]
[sub]subscript[/sub]

Ordered list:
[ol]
[li]first item[/li]
[li]second item[/li]
[/ol]

Unordered list:
[ul]
[li]first item[/li]
[li]second item[/li]
[/ul]

You can use the Preview button to review your message formatting before submitting.

Page permalink: https://www.dickimaw-books.com/bugtracker.php?key=280