如何在没有 xetex 的情况下在 pdf 查看器中旋转页面?

如何在没有 xetex 的情况下在 pdf 查看器中旋转页面?

我想在 pdf 查看器中旋转带有大图形的页面,但它只能在 xetex 中工作。

我发现了许多类似的问题,并尝试了这里的答案,但没有一个能像我预期的那样工作。发生了不必要的分页符、太多页面被旋转、错误的页面被旋转、页面被转换为横向等等......

又怎样?

\documentclass{article}
\usepackage{ifxetex}
\usepackage{blindtext}
\usepackage[figuresleft]{rotating}
\usepackage{graphicx}

\begin{document}
\Blindtext END ONE

\Blindtext END TWO

\begin{figure}
\ifxetex
    % this works with xetex
    \special{pdf: put @thispage <</Rotate 90>>}%
\else
    % so how to rotate page for luatex, pdftex, etc...? 
    This page should be rotated.
\fi
\begin{sideways}
\resizebox{!}{\textwidth}{\includegraphics{example-image-a}}
\end{sideways}
\caption{Example}
\end{figure}

\Blindtext END THREE

\Blindtext END FOUR

\end{document}

相关内容