supertabular:如何更改字体大小和添加标题?

supertabular:如何更改字体大小和添加标题?

1)如何在 supertabular 中使用小字体或微小字体?

2)如何在 supertabular 中嵌入标题?

我尝试了一些可能的选项,但它们不起作用。

\documentclass{article}
\usepackage{supertabular}
\begin{document}
\begin{supertabular}{ll}
    \hline
    AA & BB\\
    CC & DD\\
    \hline
\end{supertabular}
\end{document}

答案1

supertabular提供与标准字幕截然不同的字幕机制。提供以下三个命令:和\tablecaption,用于相应地定位字幕。\topcaption\bottomcaption

要将标题仅定位在表格下的最后一页,请使用\bottomcaption以下 MWE 所示的方式:

\documentclass{article}
\usepackage{supertabular}
\begin{document}
\bottomcaption{some caption}
\begin{supertabular}{ll}
    \hline
    AA & BB\\
    CC & DD\\
    \hline 
\end{supertabular}
\end{document}

更改 中的字体大小supertabular可以按如下方式进行。在本例中,\small影响整个表格,而\tiny仅影响下一个单元格。

\documentclass{article}
\usepackage{supertabular}
\begin{document}
\bottomcaption{some caption}\small
\begin{supertabular}{ll}
    \hline
    AA & BB\\
    \tiny CC & DD\\
    \hline 
\end{supertabular}
\end{document}

相关内容