Bug Tracker 
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 |
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
Page permalink: https://www.dickimaw-books.com/bugtracker.php?key=293