答案1
我假设您已为第一页设置了页面样式,或者正在使用\thispagestyle{empty}
。对于其余页面,您可以轻松使用tikz
用于装饰和fancyhdr
展示位置:
\documentclass{article}
\usepackage{fancyhdr,tikz}
\usepackage{lipsum}
\fancyhf{}% Clear header/footer
\renewcommand{\headrulewidth}{0pt}% Remove header rule
\renewcommand{\footrulewidth}{0pt}% Remove footer rule
\fancyfoot[C]{%
\tikz \node [circle, fill = black!30] {\textcolor{white}{\sffamily\bfseries\thepage}};}
\pagestyle{fancy}% Set the page style to fancy
\begin{document}
\sloppy\lipsum[1-50]
\end{document}