旋转单页

旋转单页
\documentclass[10pt, a4paper]{article}

\usepackage{graphicx}
...
\begin{figure}
\includegraphics{logicarch.pdf}
\caption{system architecture}
\label{fig:logiarch}
\end{figure}
...

我希望图片和标题可以水平放置在一个页面中,而其他图片则是垂直的。此外,我还注意到从 visio 导出的 pdf 底部有一大块空白,有没有办法“剪切”它一点或根据内容“自动调整”它?

答案1

使用sidewaysfigure

\documentclass[10pt, a4paper]{article}
\usepackage{graphicx}
\usepackage{rotating}
\begin{document}
\begin{sidewaysfigure}
\includegraphics[width=20cm]{example-image-a}
\caption{system architecture}
\label{fig:logiarch}
\end{sidewaysfigure}
\clearpage
\section{Some vertical page starts here}
\end{document}

相关内容