我有一個長表格,PDF 文件,大約兩到三頁。有沒有辦法自動讓這個PDF連續顯示在頁面上?我還想為此添加一個標題。我更喜歡使用 includefigure 而不是 include pdf 除非你有更好的建議讓它變得更好。這可能很簡單。我想連續顯示這個 pdf 文件,並在最後加上一個漂亮的標題。我所做的是:
\begin{figure}
\centering
\includegraphics{a.pdf}
\caption{Caption}
\label{fig:enter-label}
\end{figure}
但它只印在它出現的第一頁。
答案1
「自動」有點棘手,因為通常您需要修剪原件的部分內容,至少丟失頁碼。
在這裡,我將包中的兩頁表包含longtable
到另一個文件中。稍微縮放它,以便在添加新頁碼和標題時適合它,並修剪原始標題和頁頭/頁腳,以及以下部分中的一些文字。
longtable 手冊如下圖所示:
第一個表格包含在另一個文件中,並在最後重新添加了標題:
\documentclass[a4paper]{article}
\usepackage{graphicx}
\begin{document}
This is a new main document
\begin{figure}[p]
\centering
% /usr/local/texlive/2024/texmf-dist/doc/latex/tools/longtable.pdf
\fbox{\includegraphics[page=2,scale=0.9,trim=4cm 4cm 4cm 5cm,clip]{longtable.pdf}}
\end{figure}
\begin{figure}[p]
\centering
% /usr/local/texlive/2024/texmf-dist/doc/latex/tools/longtable.pdf
\fbox{\includegraphics[page=3,scale=0.9,trim=4cm 10cm 4cm 5cm,clip]{longtable.pdf}}
\caption{more normal to caption multi-page tables at the start
so people know what they are about before reading them}
\end{figure}
\clearpage
and more text
\end{document}