以下代码按我想要的方式旋转图形,因此现在 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}