在横向视图中使用 `\subsection{Results}` 时生成空白页

在横向视图中使用 `\subsection{Results}` 时生成空白页

我在使用 LaTex 中的横向功能时遇到了问题。具体来说,如果我在\subsection{Results}横向页面中包含内容,则会在感兴趣的页面之前生成一个横向空白页。

当我注释掉时,\subsection{Results}空白页就不会生成。

下面是我的代码:

\begin{landscape}

    \subsection{Results}

        \begin{figure}[H] 

            \begin{center}

             \includegraphics[width=\textwidth, width=8in]{Experiment_4.pdf}
             \captionof{figure}{\label{fig:Experiment 4}Experiment 4.}


            \end{center}

        \end{figure}

\end{landscape}

关于如何保留\subsection{Results}和删除空白页,有什么想法吗?

谢谢你的时间。

答案1

最终的解决方案非常简单。

添加风景内部导致问题的原因\subsection{Results}是图像本来就很大,添加标题导致它“溢出”到两页,因此出现空白页。

我简单调整了一下代码如下:

\includegraphics[scale=.35, keepaspectratio]{Experiment_4.pdf}

这使图像和文本适合页面,并确保不会“溢出”,从而不会生成空白页。

相关内容