每个包含的 PDF 上的自定义页脚

每个包含的 PDF 上的自定义页脚

我正在处理一份本质上是 PDF 集合(约 55 个)的文档。

以下是我目前得到的信息:

\documentclass[12pt]{article}
\usepackage[letterpaper,margin=1in,landscape]{geometry}
\usepackage[hidelinks]{hyperref}
\usepackage{pdfpages, tocloft, fancyhdr, xcolor, helvet, bookmark}
\renewcommand{\familydefault}{\sfdefault}

\renewcommand\numberline[1]{}
\renewcommand{\cftsecpagefont}{\color{white}} %Hack to hide section page numbers

\renewcommand{\cftsecfont}{\color{tbsteal} \bfseries \Large}% Section colour
\definecolor{myteal}{RGB}{0, 128, 128}

\pagestyle{fancy} 
\fancyhf{}
\renewcommand{\headrulewidth}{0pt}
\fancyfoot[LE,LO]{\thepage}

\begin{document}
\newgeometry{margin=1.5cm}
\pdfbookmark[section]{\contentsname}{toc}
\tableofcontents
\restoregeometry
\newpage

%Tab 1
\includepdf[pages=-, pagecommand={}, addtotoc={1, section, 1, Key Context, Key Context, 1, subsection, 2, My, Labour Relations Primer}]{MyCoolPDFDocument1.pdf}
\includepdf[pages=-, pagecommand={}]{MyAwesomePDFDocument.pdf}
...
...

我本质上想在每个包含的 pdf 的右下角放置一个自定义页脚。据我所知,PDFPages 始终使用默认页面样式,页码位于左下角。我听说过的唯一其他选项是为每个文档定义自定义页面样式。这有点不可持续。

喜欢这里的一些输入。

答案1

\documentclass[12pt]{article}
\usepackage{pdfpages, fancyhdr}
\pagestyle{fancy}
\fancyhf{}
\renewcommand{\headrulewidth}{0pt}
\lfoot{\thepage}
\cfoot{\rightmark}

\begin{document}
\includepdf[pages=-, pagecommand={\markright{my cool document}}]{example-image-a4-numbered}
\includepdf[pages=-, pagecommand={\markright{my second cool document}}]{example-image-a4-numbered}
\end{document}

在此处输入图片描述

相关内容