Skip to content

Commit 8882b8c

Browse files
committed
issue doxygen#11751 Latex documentation with many functions causes pdflatex to hit memory limit
Added correction code for the tabularray version 2025A (see also discussion: https://tex.stackexchange.com/questions/750342/check-for-exact-version-of-loaded-package)
1 parent 0829265 commit 8882b8c

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

templates/latex/doxygen.sty

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,22 @@
1313
\RequirePackage{longtable}
1414
\RequirePackage{xltabular}
1515
\RequirePackage{tabularray}
16+
\ExplSyntaxOn
17+
\IfPackageAtLeastTF{tabularray}{2025-03-11}
18+
{
19+
\IfPackageAtLeastTF{tabularray}{2025-03-12}
20+
{
21+
%newer version, do nothing
22+
}
23+
{
24+
%the required version
25+
\bool_gset_false:N \g__tblr_use_intarray_bool
26+
}
27+
}
28+
{
29+
%older version, do nothing
30+
}
31+
\ExplSyntaxOff
1632
\UseTblrLibrary{varwidth}
1733
\RequirePackage{fancyvrb}
1834
\RequirePackage{tabularx}

0 commit comments

Comments
 (0)