tabularray icon indicating copy to clipboard operation
tabularray copied to clipboard

\TblrNote: Harcoded \textsuperscript, default \sffamily

Open GMS103 opened this issue 9 months ago • 2 comments

This

\documentclass{article}

\usepackage{tabularray}

\DefTblrTemplate{note-tag}{default}{\InsertTblrNoteTag}

\renewcommand\TblrOverlap[1]{#1}

\begin{document}

Blah.

\begin{longtblr}[
caption = {Caption.},
note{(a)} = {A note.},
note{(b)} = {Another note.},
]{
colspec = l,
}
Text text text text text text.\TblrNote{(a)}\TblrNote{(b)}\\
\end{longtblr}

Blah.

\end{document}

gives: tabularray_bug

While the expected (desired) result would be:

  1. Normal position (not superscript).
  2. Current font (instead of \sffamily).

as follows: tabularray_bug2

GMS103 avatar May 19 '24 15:05 GMS103