Bug Tracker RSS feed

ID 293🔗
Date: 2025-03-10 15:45:53
Last update: 2025-03-11 10:35:51
Status Closed (Fixed)
Category tracklang
Version 1.6.5
Summary tracklang causes combination of pdfx and glossaries-extra to break

Return to Search Results

Sign in to subscribe to notifications about this report.

Description

After updating to TeXLive 2025 (specifically MacTeX), glossaries-extra together with pdfx causes an error in datatool.

Ulrike Fischer pointed out that this has to do with the test for \ifx\inputencodingname\undefined, as you can see in [TeX.SX Link].

MWE

Download (542B)

\documentclass{scrartcl}

\title{MWE}
\author{Daniel}

\begin{filecontents*}[overwrite]{\jobname.xmpdata}
    \Title{\title{}}
    \Author{\author{}}
    \Subject{}
    \Keywords{}
    \Language{en-GB}
    \Publisher{}
\end{filecontents*}

\usepackage[a-1b]{pdfx}

\usepackage[acronym,toc=false,nonumberlist]{glossaries-extra}

\newacronym{ac:PDF}{PDF}{probability density function}
\newacronym{ac:IID}{IID}{independent and identically distributed}

\makeglossary

\begin{document}

    \maketitle

    Test: \glossary{ac:PDF}

\end{document}

Evaluation

Fixed in v1.6.6. (Bear in mind that tracklang.tex is a generic TeX file. LaTeX-specific commands can only be used in the tracklang.sty wrapper package.) Please allow a few days for it to reach the TeX distributions.

Unrelated to this issue, \glossary is not used by the glossaries or glossaries-extra package. The correct syntax is:

\makeglossaries

\newacronym{ac:PDF}{PDF}{probability density function}
\newacronym{ac:IID}{IID}{independent and identically distributed}

\begin{document}

    \maketitle

    Test: \gls{ac:PDF}

    \printacronyms
\end{document}

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. All guest comments have to be manually checked before they appear on the page. There are too many bots trying to spam the site to allow unauthenticated users to post without verification.

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=293

Return to Search Results