Files
John MacFarlane 3acfe775e6 LaTeX writer: omit empty caption on unnumbered tables.
(Even if they have an identifier.)

Closes #11795.
2026-08-11 11:22:12 -07:00

475 B

% pandoc -t latex
|
|--|--
|a|b

:   {#foo .unnumbered}
^D
{\def\LTcaptype{none} % do not increment counter
\begin{longtable}[]{@{}ll@{}}
\toprule\noalign{}
\endhead
\bottomrule\noalign{}
\endlastfoot
a & b \\
\end{longtable}
}

% pandoc -t latex
|
|--|--
|a|b

:   {.float}
^D
{\def\LTcaptype{none} % do not increment counter
\begin{table}[]
\centering
\begin{tabular}{@{}ll@{}}
\toprule\noalign{}
a & b \\
\bottomrule\noalign{}
\end{tabular}
\end{table}
}