我使用的是 lyx 2.2.3 win7 64、miktex 2.9,并尝试使用\includepdf
pdfpages 包包含多个 pdf。我的一些 pdf 文档已经在页脚中带有页码,并且页码由
\includepdfset{frame,pagecommand=\thispagestyle{plain}}
在我的序言中,页码与页脚中的文本重叠。有什么方法可以让页码位于页面左下角吗?我尝试使用
\includepdfset{frame,scale=0.8,pagecommand=\thispagestyle{plain}}
尽管现在页码不重叠,但它使包含的 pdf 变得不好看。
答案1
\documentclass{article}
\usepackage{fancyhdr}
\usepackage{pdfpages}
\renewcommand{\headrulewidth}{0pt}
\rfoot{\thepage}
\pagestyle{fancy}
\begin{document}
\includepdfset{frame,pagecommand=\pagestyle{fancy}}
\includepdf[pages=-]{hi}
\end{document}
答案2
使用上述代码,我在页脚中获得了两个页码:中间和右侧。然后我在 Lyx 中将页边距更改为:顶部和底部为 2cm,顶部和底部为 1cm;并在前言中明确输入以下内容,现在页码可以正常打印,页脚中间没有页码。
\usepackage{fancyhdr} \usepackage{pdfpages} \pagestyle{fancy} \lhead{} \chead{} \cfoot{} \lfoot{} \rfoot{Bates 编号\thepage} \fancyfootoffset[R]{1cm} \renewcommand{\headrulewidth}{0pt} \renewcommand{\footrulewidth}{0pt}