在底部的示例中,脚注出现在错误的页面上。任何有关如何修复此问题的帮助都将不胜感激!我怀疑它可能与侧标题表 ( SCtable
) 有关。如果我将其转换为标准表,脚注就会出现在正确的页面上。但是,我想保留侧标题表。
脚注应该出现在第一页但却出现在第二页。
如果我\newpage
在第一节之前插入一个(无论如何都是分页符),那么脚注就会出现在正确的位置。但是,我不想对分页符进行硬编码,因为布局可能仍会发生变化。
在此先感谢有关如何解决此问题的任何帮助。
\documentclass[a4paper,11pt]{scrbook}
\usepackage[width=16cm,vmarginratio={3:4},top=3.5cm]{geometry}
\usepackage{setspace}
\usepackage[hang]{footmisc}
\usepackage{newtxtext}
\usepackage[innercaption]{sidecap}
\usepackage{lipsum}
\setlength{\parskip}{1.5ex}
\onehalfspacing
\begin{document}
\lipsum[11]
\lipsum[5]
\lipsum*[3-4]
\lipsum*[3]\footnote{I would like to have the footnote text on the same page as the footnote mark.}
% \newpage % IF I UN-COMMENT THE NEWPAGE COMMAND, THE FOOTNOTE IS ON THE CORRECT PAGE
\section{New Section}
\begin{SCtable}[][tb]
\begin{tabular}{ccc} \hline
\textbf{A} & \textbf{B} & \textbf{C}\\
1 & 2 & 3\\
4 & 5 & 6\\ \hline
\end{tabular}
\caption{Caption for Table}
\end{SCtable}
\lipsum[1]
\end{document}