如何实现仅在第一页的页码旁边显示文字?

如何实现仅在第一页的页码旁边显示文字?

在此处输入图片描述

那么我该如何实现“最后更新...”

这是原始资料的 pdf:

编辑 1:编辑后我重新更改了标题,因为编辑的人不理解这个问题。

来源

答案1

加载包fancyhdr并使用命令lfoot(意思是左脚。您还可以有rfoot,,cfoot& c/l/rhead。)如下例所示。

\documentclass{article}
\usepackage{fancyhdr} % Loaded for footers.
%\renewcommand{\headrulewidth}{0pt} % Uncomment this line if you don't want the line at the top.

\begin{document}
    \thispagestyle{fancy}
    \rfoot{\small Last update: August 27, 2018}
    \tableofcontents    
    \pagebreak
    \section{First}
    \section{Second}
    \section{Third}
\end{document}

titlepage

\documentclass{article}
\usepackage{fancyhdr} % Loaded for footers.
%\renewcommand{\headrulewidth}{0pt} % Uncomment this line if you don't want the line at the top.
\title{text}
\author{names}

\begin{document}
\begin{titlepage}
        \maketitle
        \thispagestyle{fancy}
        \rfoot{\small Last update: August 27, 2018}
        \tableofcontents
\end{titlepage}    
    \pagebreak
    \section{First}
    \section{Second}
    \section{Third}
\end{document}

相关内容