我使用fancyhdr
包并希望打印超出文本高度的大型浮动。因此我想删除页眉和页脚。并让浮动垂直居中。我试过
\thispagestyle{empty}
\enlargethispage{10\baselineskip}
\newgeometry{left=3cm,left=3cm,bottom=0.5cm,top=0.5cm}
{
\thispagestyle{plain}
\begin{figure}[!htbp]%
\centering
\includegraphics[height=.7\textwidth,angle=90]{tables/tab_results.pdf}
\label{tab:results}%
\captionof{table}{Result table.}%
\label{tab:ana-res}%
\end{figure}
}
\restoregeometry
但浮动不会低于(不可见的)脚尺。有什么想法吗?
答案1
您只需将 [!htbp] 替换为 [!p],否则它将被放置为顶部浮动。干杯!