我试图将侧边图与章节标题放在同一页中,但标题页上始终有空白,而图像则出现在下一页中
\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}