如何避免各部分之间的空白

如何避免各部分之间的空白

我有第 1 节,它只有半页,第 2 节紧随其后。但是,第 2 节从新页面开始,而不是从上一页的下半部分开始。因此,第 1 节位于页面的上半部分,而下半页是空白的,从而形成了一个很大的空白区域。我需要将第 2 节移到上一页。

代码如下:

\section{第 1 节} ........ ....... \section{第 2 节} ......

\documentclass{article}

\usepackage{placeins}

\begin{document}



\FloatBarrier\section{Thesis Statement}
his research is intended to explore methods for providing ....
\textbf{Thesis statement}: A framework can be leveraged to improve the channel
performance in a dynamic environment at various types of obstructing objects,
for high frequency mobile network technologies.

\begin{table}[b]
  \centering
  TTT
  \caption{zzz}
\end{table}

\FloatBarrier\section{Anticipated Research Contributions}
This dissertation is guided by the desire to perform the following:
\begin{itemize}
\item ........ 
\end{itemize}
\end{document}

答案1

\FloatBarrier\clearpage通过发出一个强制下一节标题移到新页面的命令来刷新该点上所有待处理的浮动。如果您希望节标题始终从当前页面开始,则不应使用\FloatBarrier

在此处输入图片描述

\documentclass{article}

\usepackage{placeins}

\begin{document}



\FloatBarrier\section{Thesis Statement}
his research is intended to explore methods for providing ....
\textbf{Thesis statement}: A framework can be leveraged to improve the channel
performance in a dynamic environment at various types of obstructing objects,
for high frequency mobile network technologies.

\begin{table}[b]
  \centering
  TTT
  \caption{zzz}
\end{table}

%\FloatBarrier
\section{Anticipated Research Contributions}
This dissertation is guided by the desire to perform the following:
\begin{itemize}
\item ........ 
\end{itemize}
\end{document}

相关内容