我有一个2 tex文件,我将其转换为pdf,然后合并2 pdf。 我的问题是我想为没有页码的每个pdf定义页脚。
\thispagestyle{fancy}
\rfoot{text}
但是它给了我页码。
答案 0 :(得分:2)
试试这个
\thispagestyle{fancy}
\rfoot{text}
\cfoot{}
\lfoot{}
答案 1 :(得分:0)
您可以在文档开头设置以下内容:
\pagenumbering{gobble}
更新:@laspal,不知道为什么它不适合你。这是我刚用长桌试过的基本测试。上面的指令抑制了页面编号,同时在两个页面上都保持页脚完整。
\documentclass[10pt]{article}
\usepackage{fancyhdr}
\usepackage{longtable}
\pagestyle{fancy}
\pagenumbering{gobble}
\begin{document}
\rfoot{footer text}
some text
\begin{longtable}{rr}
\hline
& X \\
\hline
1 & 1 \\
2 & 2 \\
3 & 3 \\
% SNIP: generated lines to span two pages
73 & 73 \\
74 & 74 \\
75 & 75 \\
\hline
\end{longtable}
some more text on second page
\end{document}