我的章节标题和图片在两个不同的页面中

我的章节标题和图片在两个不同的页面中

我的版块和图片在两个不同的页面中。我应该怎么做才能将它们放在同一页面中。谢谢。这是我的代码:

\FloatBarrier
%\label{sec:****}
%\title{\\bfseries{Appendix A}}
\subsection*{********}
\captionsetup{labelformat=empty}
%\begin{subappendices}
\label{sec:RobustDubai}
%\FloatBarrier
\subsection{###############}
\begin{sidewaysfigure}[H]
    \caption{###################}
    \centerline{\includegraphics[scale=0.50]{epsfilename}}
    \label{fig:########}
    \caption*{\footnotesize Note:#####################.}
\end{sidewaysfigure}

答案1

根据文档,环境sidewaysfigure“生成一个页面大小的浮动元素,其内容旋转±90度。”因此,asidewaysfigure将始终单独出现在其页面上。如果您不想这样,请使用普通元素figure并手动旋转它。

相关内容