diff options
Diffstat (limited to 'Master/texmf-dist/source')
-rw-r--r-- | Master/texmf-dist/source/latex/colortbl/colortbl.dtx | 34 |
1 files changed, 28 insertions, 6 deletions
diff --git a/Master/texmf-dist/source/latex/colortbl/colortbl.dtx b/Master/texmf-dist/source/latex/colortbl/colortbl.dtx index 076c69643a1..8e5f1e8be18 100644 --- a/Master/texmf-dist/source/latex/colortbl/colortbl.dtx +++ b/Master/texmf-dist/source/latex/colortbl/colortbl.dtx @@ -15,7 +15,7 @@ %<driver>\ProvidesFile{colortbl.drv} % \fi % \ProvidesFile{colortbl.dtx} - [2024/05/26 v1.0h Color table columns (DPC)] + [2024/07/06 v1.0i Color table columns (DPC)] % % \iffalse %<*driver> @@ -1505,9 +1505,21 @@ % % % longtable support. +% \changes{v1.0i}{2024/07/06}{tagging code adjusments for longtable hline} +% \begin{macrocode} +\ExplSyntaxOn +% \end{macrocode} +% +% Stub tag support if tagging has not been enabled. +% \begin{macrocode} +\cs_if_exist:NF\tag_mc_begin:n{ + \cs_new:Npn\tag_mc_begin:n#1{} + \cs_new:Npn\tag_mc_end:{} +} +% \end{macrocode} +% % \begin{macrocode} \AtBeginDocument{ - \ifx\longtable\@undefined\else \def\LT@@hline{% \ifx\LT@next\hline \global\let\LT@next\@gobble @@ -1517,7 +1529,10 @@ \else \gdef\CT@LT@sep{% \multispan\LT@cols{% - \CT@drsc@\leaders\hrule\@height\doublerulesep\hfill}\cr}% + \tag_mc_begin:n{artifact} + \CT@drsc@\leaders\hrule\@height\doublerulesep\hfill + \tag_mc_end: \int_gdecr:N \g__tbl_row_int + }\cr}% \fi \else \global\let\LT@next\empty @@ -1526,13 +1541,20 @@ \fi \ifnum0=`{\fi}% \multispan\LT@cols - {\CT@arc@\leaders\hrule\@height\arrayrulewidth\hfill}\cr + {\tag_mc_begin:n{artifact} + \CT@arc@\leaders\hrule\@height\arrayrulewidth\hfill + \tag_mc_end: \int_gdecr:N \g__tbl_row_int + }\cr \CT@LT@sep \multispan\LT@cols - {\CT@arc@\leaders\hrule\@height\arrayrulewidth\hfill}\cr + {\tag_mc_begin:n{artifact} + \CT@arc@\leaders\hrule\@height\arrayrulewidth\hfill + \tag_mc_end: \int_gdecr:N \g__tbl_row_int + }\cr \noalign{\penalty\@M}% \LT@next} - \fi} + } +\ExplSyntaxOff % \end{macrocode} % % |