更新 MiKTeX 后,表格注释和三部分表格间距出现异常行为:根据位置添加任意间距

更新 MiKTeX 后,表格注释和三部分表格间距出现异常行为:根据位置添加任意间距

似乎在我的文档(包含大模板的大型文档,正在使用 MWE...)中的某个点之后,在表注之前添加了额外的空间。我之前没有注意到这一点,它只发生在我最近更新 MiKTeX 的机器上。当将文档传输到另一台安装不太最新软件包的计算机时,问题并不明显。pdfTeX 或 LuaTeX 会出现问题。

对于可能发生的事情有什么见解吗?

看起来 tpt 和 tablenotes 都已经有一段时间没有更新了。

            \begin{threeparttable}[t]%
                \begin{tabular}{l}
                    Hello world\\\bottomrule
                \end{tabular}
                \begin{tablenotes}% SPACE UNEXPECTEDLY ADDED HERE
                    Note
                \end{tablenotes}%
            \end{threeparttable}%

编辑:

有时会显示这个(我想要的): 在此处输入图片描述

但有时会显示:在此处输入图片描述

请注意,它在同一个文档中会有所不同!

编辑2:

我做了一个 MWE。

主文本:

\documentclass{article}
\usepackage[para]{threeparttable}
\usepackage{tablefootnote}
\usepackage{booktabs}
\usepackage{subfiles}

\begin{document}
    \subfile{sub}
            \begin{threeparttable}%
                \begin{tabular}{l}
                    Hello world outside subfile\\\bottomrule
                \end{tabular}
                \begin{tablenotes}%
                    Note
                \end{tablenotes}%
            \end{threeparttable}%
    
\end{document}

亚特克

\documentclass[Main.tex]{subfiles}
\begin{document}
        \begin{threeparttable}%
                \begin{tabular}{l}
                    Hello world inside subfile\\\bottomrule
                \end{tabular}
                \begin{tablenotes}%
                    Note
                \end{tablenotes}%
            \end{threeparttable}%
\end{document}

输出:在此处输入图片描述

相关内容