当我在LATEX中每个部分使用多个数字时,我无法再指示分段编号在分页后开始。我一直在努力解决这个问题。如果那里有任何LATEX向导,你的帮助将非常感激。
在下面引用的文件中,我正在努力解决第2部分。最后的文件比这长得多,这个问题多次发生,但我想为了清楚起见,我会创建一个更简单的版本,但仍会出现问题。
zip file containing everything
\documentclass{article}
\usepackage{graphicx}
\usepackage{placeins}
\widowpenalty=2000
\clubpenalty=2000
\begin{document}
\section{}
\begin{figure} [h]
\center
\includegraphics[width=12cm]{Figure}
\label{fig:example}
\end{figure}
\FloatBarrier
My goal is to have section 2 start on a new page.
$$\\$$
\begin{figure} [h]
\center
\includegraphics[width=14cm]{Figure}
\label{fig:example}
\end{figure}
\newpage
\pagebreak [4]
$$\\$$
\section{}
\begin{figure} [h]
\center
\includegraphics[width=14cm]{Figure}
\label{fig:example}
\end{figure}
This is the body text for section 2.
\end{document}
答案 0 :(得分:4)
您是否尝试过\clearpage
而不是\newpage
?