答案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}