尝试在标题下方放置一个侧向图,但它会在标题后不断添加一页,而图则在下一页

尝试在标题下方放置一个侧向图,但它会在标题后不断添加一页,而图则在下一页

我试图将侧边图与章节标题放在同一页中,但标题页上始终有空白,而图像则出现在下一页中

\section{sectiontitle}
\begin{sidewaysfigure}[ht]
    \includegraphics[width=0.8\textwidth]{image}
    \caption{caption}
    \label{fig:PropProf}
\end{sidewaysfigure}

答案1

.8\textheight太大了。

\documentclass{article}
\usepackage{graphicx}
\usepackage{caption}
\usepackage{showframe}

\begin{document}
\section{sectiontitle}
\rotatebox{90}{\begin{minipage}{0.75\textheight}
    \includegraphics[width=\textwidth]{example-image}
    \captionof{figure}{caption}
    \label{fig:PropProf}
\end{minipage}}
\end{document}

sidewways figure

相关内容