longtable、脚注、m 类型和 arydshln

longtable、脚注、m 类型和 arydshln

longtable 包允许在 longtable 中使用脚注,就像在这个 MWE 中一样

\documentclass{article}
\usepackage{array,longtable}
\begin{document}
\begin{longtable}{m{1cm}|m{2cm}}
\footnote{Footnote}&\\
\hline
    \footnote{Footnote}&\\
\end{longtable}
\end{document}

但是,如果我同时使用 arydshln 功能,它不起作用

\documentclass{article}
\usepackage{array,longtable,arydshln}
\begin{document}
\begin{longtable}{m{1cm}:m{2cm}}
\footnote{Footnote}&\\
\hdashline
    \footnote{Footnote}&\\
\end{longtable}
\end{document}

在这种情况下,我需要插入至少一p列,但我不想,因为 |p 列占据了

\documentclass{article}
\usepackage{array,longtable,arydshln}
\begin{document}
\begin{longtable}{m{1cm}:m{2cm}|p{0cm}|}
\footnote{Footnote}&&\\
\hdashline
    \footnote{Footnote}&&\\
\end{longtable}
\end{document}

有什么办法可以解决这个问题吗?

答案1

现在 CTAN 上的 1.72 版本解决了该问题。http://www.ctan.org/pkg/arydshln/

相关内容