Estou tentando (de alguma forma) implementar uma caption
biblioteca para tabularray
, com base na respostaaqui
Como @Ulrike mencionou, a resposta original dá avisos devido hyperref
à definição de âncoras de hiperlinks duplos, então tentei omitir uma das âncoras por ser gerada.
Além disso, verifiquei e preciso adicionar um vspace extra de 1 ponto para legendas contínuas, caso contrário o espaçamento vertical entre a primeira linha da tabela e a legenda não corresponderia.
Minha pergunta é: de onde vem o espaçamento extra? Adicionar o comando vspace é a melhor opção para evitá-lo? E há alguma outra consideração que estou omitindo?
\ProvidesPackage{tblr-caption}[2024/01/02 package tblr-caption]
\RequirePackage{tabularray}
\RequirePackage{caption}
\@ifundefined{KOMAClassName}
{}
{\PackageWarningNoLine{tblr-caption}{KOMAScript class detected. Setup caption position using 'captions=<option>'}}
\@ifpackageloaded{hyperref}{%
\newenvironment{nohyp}{\begin{NoHyper}}{\end{NoHyper}}
}{%
\newenvironment{nohyp}{}{}
}
\ExplSyntaxOn
\prg_generate_conditional_variant:Nnn \tl_if_empty:n { e } { TF }
\let \IfTokenListEmpty = \tl_if_empty:eTF
\ExplSyntaxOff
\NewTblrLibrary{caption}
{%
\SetTblrOuter[talltblr,longtblr]{headsep=0pt}
\DefTblrTemplate{firsthead}{default}{%
\addtocounter{table}{-1}%
\IfTokenListEmpty{\InsertTblrText{entry}}{%
\begin{nohyp}%
\captionsetup{type=table}
\caption{\InsertTblrText{caption}}%
\end{nohyp}%
}{%
\begin{nohyp}%
\captionsetup{type=table}
\caption[\InsertTblrText{entry}]{\InsertTblrText{caption}}%
\end{nohyp}%
}%
}
\DefTblrTemplate{middlehead,lasthead}{default}{%
\addtocounter{table}{-1}%
\captionsetup{type=table}%
\caption[]{\InsertTblrText{caption} \UseTblrTemplate{conthead}{default}}
\vspace*{1pt}%
}
\SetTblrTemplate{caption-lot}{empty}
}
MWE para testar:
\documentclass[12pt]{article}
\usepackage[spanish,mexico]{babel}
\usepackage{lipsum}
\usepackage[singlespacing]{setspace}
\usepackage{tabularray}
\usepackage{hyperref} %% must be loaded for tblr-caption to work
\usepackage{tblr-caption} %% must be loaded after hyperref
\UseTblrLibrary{caption}
\captionsetup[table]{%
format=plain,
labelsep = newline,
singlelinecheck = false,
labelfont = bf,
textfont = it,
font = {small,singlespacing},
position = above,
}%
\DefTblrTemplate{conthead-text}{default}{(Continuación)}
\DefTblrTemplate{contfoot-text}{default}{Continúa en la siguiente página}
\begin{document}
\section{Introduction}
\begin{table}[htbp]
\centering
\captionsetup{width=5cm}
\caption{caption using tabular and caption package}
\begin{tabular}{|c|c|c|c|}
\hline
a & b & filler text & filler text\\
\hline
a & b & filler text & filler text\\
\hline
a & b & filler text & filler text\\
\hline
a & b & filler text & filler text\\
\hline
\end{tabular}
\label{tab:my_label}
\end{table}
\begin{table}[htbp]
\centering
\begin{talltblr}[caption={caption using tabularray package}]{colspec={cccc},hline{1,2,Z} = {0.05em}}
a & b & filler text & filler text\\
a & b & filler text & filler text\\
a & b & filler text & filler text\\
a & b & filler text & filler text\\
\end{talltblr}
\end{table}
\begin{longtblr}[
caption = {The Caption of {\ttfamily longtblr} environment.},
entry = {The Caption in LOT},
label=table1,
% headsep=0pt,
]{
colspec = {rccl},
hline{1,2,Z} = {0.05em},
row{1} = {font=\bfseries},
rowhead = 1,
}
date & time & time zone & event \\
2019/01/01 & 00:00 & CET & server installation finished\\
2019/01/01 & 00:05 & CET & server successfully booted\\
2019/01/01 & 00:06 & CET & starting xyz daemon\\
2019/01/01 & 00:00 & CET & server installation finished\\
2019/01/01 & 00:05 & CET & server successfully booted\\
2019/01/01 & 00:06 & CET & starting xyz daemon\\
2019/01/01 & 00:00 & CET & server installation finished\\
2019/01/01 & 00:05 & CET & server successfully booted\\
2019/01/01 & 00:06 & CET & starting xyz daemon\\
2019/01/01 & 00:00 & CET & server installation finished\\
2019/01/01 & 00:05 & CET & server successfully booted\\
2019/01/01 & 00:06 & CET & starting xyz daemon\\
2019/01/01 & 00:00 & CET & server installation finished\\
2019/01/01 & 00:05 & CET & server successfully booted\\
2019/01/01 & 00:06 & CET & starting xyz daemon\\
2019/01/01 & 00:06 & CET & starting xyz daemon\\
2019/01/01 & 00:00 & CET & server installation finished\\
2019/01/01 & 00:05 & CET & server successfully booted\\
2019/01/01 & 00:06 & CET & starting xyz daemon\\
2019/01/01 & 00:06 & CET & starting xyz daemon\\
2019/01/01 & 00:00 & CET & server installation finished\\
2019/01/01 & 00:05 & CET & server successfully booted\\
2019/01/01 & 00:06 & CET & starting xyz daemon\\
\end{longtblr}
\end{document}
EDIT: Sem o \vspace*{1pt}
in tblr-caption
, recebo uma incompatibilidade entre o espaçamento vertical da primeira legenda de um longtblr e sua legenda continuada, como visto na imagem a seguir (o primeiro é o contcaption, o segundo é a legenda principal de um longtblr)
Responder1
O problema é que eu estava usando um modelo incorreto. Em vez de conthead
, eu deveria ter usado conthead-text
.
A definição corrigida é:
\DefTblrTemplate{middlehead,lasthead}{default}{%
\addtocounter{table}{-1}%
\captionsetup{type=table}%
\caption[]{\InsertTblrText{caption} \UseTblrTemplate{conthead-text}{default}}%
}