Skip to content

Commit 16ab0fb

Browse files
committed
Missing hyperlinks after table in table
Hyperlinks were missing after the usage of a nested table.(see discussion at: lvjr/tabularray#620 and subsequent issue latex3/hyperref#397)
1 parent 0829265 commit 16ab0fb

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

templates/latex/doxygen.sty

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,21 @@
1414
\RequirePackage{xltabular}
1515
\RequirePackage{tabularray}
1616
\UseTblrLibrary{varwidth}
17+
\ExplSyntaxOn
18+
\int_new:N \g__doxy_nohyper_int
19+
\AtBeginDocument
20+
{
21+
\renewenvironment{tblrNoHyper}
22+
{
23+
\int_compare:nNnT {\g__doxy_nohyper_int} = {0} {\begin{NoHyper}}
24+
\int_gincr:N \g__doxy_nohyper_int
25+
}
26+
{
27+
\int_gdecr:N \g__doxy_nohyper_int
28+
\int_compare:nNnT {\g__doxy_nohyper_int} = {0} {\end{NoHyper}}
29+
}
30+
}
31+
\ExplSyntaxOff
1732
\RequirePackage{fancyvrb}
1833
\RequirePackage{tabularx}
1934
\RequirePackage{multicol}

0 commit comments

Comments
 (0)