在 pdflscape 環境中包含 pdf

在 pdflscape 環境中包含 pdf

我想在我的文件中包含一個包含可縮放向量圖形的 pdf 檔案。由於圖形的寬度,它必須以橫向模式導入(可以工作)。但是,我也想旋轉整個頁面(這樣讀者就不需要手動翻頁。

我嘗試過類似的事情:

\usepackage{pdflscape}
\usepackage{pdfpages}

...

\begin{landscape}
    \begin{figure}[h!]
        \centering
        \includepdf[landscape=true,pages=1]{figures/diagram.pdf}
    \end{figure}
\end{landscape}

它會旋轉圖形但不會旋轉頁面本身。當我註解掉該\includepdf行時,頁面也會旋轉。

有沒有辦法同時旋轉圖形和頁面?

答案1

為啥不自己用\includegraphics呢?

\documentclass{article}
\usepackage{lipsum}
\usepackage{pdflscape,graphicx}
\begin{document}
  \lipsum[1]
  \begin{landscape}
    \begin{figure}[htb]
        \centering
        \includegraphics[page=10,angle=-90,width=\linewidth]{pgfmanual.pdf}
    \end{figure}
  \end{landscape}
\lipsum[2]
\end{document}

在此輸入影像描述

相關內容