我怎样才能将脚注并排放在横向表格中?此处para
的选项footmisc
不起作用。
最小工作示例:
\documentclass[11pt]{article}
\usepackage{rotating} % to rotate e.g. table
\usepackage[multiple,para]{footmisc} % separate footnotes by a comma
\usepackage{tablefootnote} % footnotes in tables
\begin{document}
\begin{sidewaystable}
\centering
\begin{tabular}[h]{| l |l |l| }
\hline
1 & 2 & 3 \tablefootnote{Remark 1} \\
\hline
7 & 8 & 9 \tablefootnote{Remark 2} \\
\hline
\end{tabular}
\caption{Caption}
\label{tab:natural}
\end{sidewaystable}
\end{document}
答案1
您的示例无需 即可工作tablefootnotes
,只需在 sidewaystable 中使用脚注即可。但我发现无法将脚注放在一行中,无论是使用 bigfoot、manyfoot 还是 eledmac。
除了这里的一个向导提供了解决方案之外,还有一个快速而肮脏的解决方案:
\documentclass[11pt]{article}
\usepackage{rotating} % to rotate e.g. table
%\usepackage{tablefootnote} % footnotes in tables
\begin{document}
\begin{sidewaystable}
\centering
\begin{tabular}[h]{| l |l |l| }
\hline
1 & 2 & 3 \textsuperscript{a} \\
\hline
7 & 8 & 9 \textsuperscript{b} \\
\hline
\end{tabular}
\vspace{2ex}
\footnotesize \textsuperscript{a} Remark 1 \quad
\textsuperscript{b} Remark 2
\caption{Caption}
\label{tab:natural}
\end{sidewaystable}
\end{document}
可以通过定义计数器、重置脚注计数器等方式来改进这一点。但是,只有当您的侧边表中有大量脚注时,这才值得花费时间和精力。