longtable, notes de bas de page, type m et arydshln
Le package longtable L'extension `longtable` permet notamment d'utiliser des notes de bas de page dans un tableau, comme dans l'ECM suivant
suivant :
\documentclass{article}
\usepackage{array,longtable}
\begin{document}
\begin{longtable}{m{1cm}|m{2cm}}
\footnote{Footnote}&\\
\hline
\footnote{Footnote}&\\
\end{longtable}
\end{document}
Cependant, lorsqu'on lorsque l'on utilise en même temps le package arydshln, l'extension `arydshln`, cela ne fonctionne pas
:
\documentclass{article}
\usepackage{array,longtable,arydshln}
\begin{document}
\begin{longtable}{m{1cm}:m{2cm}}
\footnote{Footnote}&\\
\hdashline
\footnote{Footnote}&\\
\end{longtable}
\end{document}
Dans ce cas il faut insérer au minimum une colonne de type `p`, mais je ne veux/peux pas, le veux ni ne le peux, car une telle colonne prend de la place :
\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}
Une idée pour résoudre le problème ?