如何在没有页码的乳胶中添加页脚

发布于 2024-08-28 22:50:44 字数 150 浏览 2 评论 0原文

我有一个 2 tex 文件,我正在将其转换为 pdf,然后合并 2 pdf。 我的问题是我想为每个 pdf 定义页脚而不包含页码。

\thispagestyle{fancy}
\rfoot{text}

但它给了我页码。

I have a 2 tex file which I am converting to pdf and then merging the 2 pdf.
My problem is I want to define footer for each pdf without the page numbers.

\thispagestyle{fancy}
\rfoot{text}

but it gives me the page number.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

薆情海 2024-09-04 22:50:44

试试这个

\thispagestyle{fancy}
\rfoot{text}    
\cfoot{}
\lfoot{}

Try this

\thispagestyle{fancy}
\rfoot{text}    
\cfoot{}
\lfoot{}
从来不烧饼 2024-09-04 22:50:44

您可以在文档开头设置以下内容:

\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}

You can set the following at the beginning of the document:

\pagenumbering{gobble}

Update: @laspal, not sure why it's not working for you. Here's a basic test I just tried with long table. The directive above suppressed page numbering while leaving the footers intact on both pages.

\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}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文