风景大图如何定位?

风景大图如何定位?

我正在尝试使用以下命令插入一个图形:


\begin{figure}[h!]
   \includegraphics[scale=0.5,angle=90]{fig.jpeg}
\caption{figure}
\end{figure}

但是图形太大,所以它在页面上向下移动,并且覆盖了页码,如下所示:

在此处输入图片描述

我希望它位于页面的中心,我该怎么做呢?

答案1

这个解决方案对你有用吗?

\documentclass{article}

\usepackage{graphicx}
\usepackage{rotating}

\begin{document}    
    
    \begin{sidewaysfigure}
        \includegraphics[width=\textwidth]{example-image}
    \end{sidewaysfigure}

\end{document}

在此处输入图片描述

相关内容