包“threeparttable”:它提供了哪些优势?

包“threeparttable”:它提供了哪些优势?

过去我一直使用tabularxcaptionparnotes包来设计我的表格。现在用户约翰·科米洛提到了包裹三部分表

threeparttable与所提及的其他软件包相比,它有哪些优势?


到目前为止,我的经典方法是这样的:

\documentclass{article}
\usepackage{tabularx}
\usepackage{caption}
\usepackage{parnotes}

\begin{document}
\begin{table}[htbp]
    \caption{This is the caption}
    \begin{tabularx}{\textwidth}{|l|l|}
        \parnoteclear
        Bla\parnote{First parnote} & Blub\parnote{Second parnote} \\
        \end{tabularx}
        \parnotes
\end{table}
\end{document}
  • 什么时候继续进行才有意义threeparttable
  • 虽然常见的parnotes是自动引用他们的项目标识符,但在threeparttable我必须手动42\tnote{1}在表格中输入并

    \begin{tablenotes} \item [1] the first note ... \end{tablenotes}

    放在我想放笔记的桌子下面。这似乎比直接使用\parnote{This is a parnote}并自行完成所有工作要耗费更多时间?

相关内容