当使用 tabu X 列时,可以指定负系数将列缩小到其自然宽度:
\documentclass{article}
\usepackage{tabu}
\begin{document}
\begin{tabu}{|X[-1]|X|}
\hline
Text & Some long text. Some long text. Some long text. Some long text.\\
\hline
\end{tabu}
\end{document}
但是,只要在带有负系数的列中添加脚注(这里是第一个),它就会表现得好像没有负系数一样:
\documentclass{article}
\usepackage{tabu}
\begin{document}
\begin{tabu}{|X[-1]|X|}
\hline
Text\footnote{Foo Bar} &
Some long text. Some long text. Some long text. Some long text.\\
\hline
\end{tabu}
\end{document}
使用脚注时,如何使表格具有第一个示例中的列宽?
请注意,虽然这些示例使用了tabu
环境,但我想使用longtabu
出现相同问题的环境。