图形垂直居中

图形垂直居中

我从其他帖子中了解到,单个浮动元素应自动在页面上垂直居中;但是,在我的代码中似乎并非如此。为什么?

我使用书本类。

下面的两个例子都导致图形被放置在页面的顶部。

\clearpage
\begin{figure}[ht]
\renewcommand{\figurename}{Picture}
\centering
\includegraphics[scale=1.0,clip]{pic1.eps}
\caption{pic1}
\label{pic1}
\end{figure}

\clearpage
\begin{figure}[H]
\renewcommand{\figurename}{Picture}
\centering
\includegraphics[scale=0.6,clip]{pic2.eps}
\caption{pic2}
\label{pic2}
\end{figure}
\clearpage

答案1

这个问题可以通过使用来解决

\begin{figure}[p] 

相关内容