如何在横向模式下将图片置于页面中央

如何在横向模式下将图片置于页面中央

我有一张大图片,太宽了,无法放入页面,所以我尝试使用横向模式旋转页面。问题是图片不在中心。

我怎样才能使图片移动到中心?

在此处输入代码

\begin{landscape}
\begin{figure}[htpb]
  \centering
  \includegraphics[height=0.6\textheight, width=1.5\textwidth]{fig/decomp.pdf}
  \caption{Functional Decomposed Data Structure}
\end{figure}
\end{landscape}

答案1

\begin{landscape}\centering
\vspace*{\fill}
\begin{figure}[htpb]
  \centering
  \includegraphics[height=0.6\textheight, width=1.5\textwidth]{fig/decomp.pdf}
  \caption{Functional Decomposed Data Structure}
\end{figure}
\vfill
\end{landscape}

相关内容