如何将乳胶图连同标题一起旋转 90 度?

如何将乳胶图连同标题一起旋转 90 度?

以下代码按我想要的方式旋转图形,因此现在 Y 轴与 A4 纸张的短边平行。但是,标题仍然与纸张的短边平行。

我怎样才能使标题跟随图形并与纸张的大边缘平行?

\begin{figure}[p]

\centering
\includegraphics[width=1.3\textwidth, angle =90 ]{Graphs/1.png}
\caption{Box plot of number of positions sent per iteration using this scheme}
\label{fig:awesome_image}

\end{figure}

答案1

rotating软件包引入了一个sidewaysfigure非常适合的环境:

\documentclass{article}

\usepackage{rotating}
\usepackage{tikz}

\begin{document}

\begin{sidewaysfigure}
    \centering
    \begin{tikzpicture}[scale=4]
        \fill[blue] (0,0) rectangle(2,1.5);  
    \end{tikzpicture}
    \caption{Box plot of number of positions sent per iteration using this scheme}
    \label{fig:awesome_image}
\end{sidewaysfigure}

\end{document}

在此处输入图片描述

相关内容