如何在 Latex 中创建页码模板

如何在 Latex 中创建页码模板

如何在乳胶中创建这种样式的页码。

enter image description here

答案1

使用设置页脚fancyhdr

enter image description here

\documentclass{article}

\usepackage{lipsum}
\usepackage{fancyhdr,xcolor}

\definecolor{green_colour}{RGB}{191,201,176}

\fancyhf{}% Clear header/footer
\fancyfoot[L]{\rule[.6ex]{\linewidth}{.4pt}}
\fancyfoot[C]{\colorbox{green_colour}{\thepage}}
\renewcommand{\headrulewidth}{0pt}% Remove header rule
% \renewcommand{\footrulewidth}{0pt}% Remove footer rule (default)
\pagestyle{fancy}% Set page style to use the above setup

\begin{document}

\sloppy\lipsum[1-50]

\end{document}

该规则是作为Left 页脚的一部分设置的,首先完成。接下来是Center 页脚,它将页码设置\colorboxLeft 页脚/规则的上方。当​​然,如果需要,您也可以使用页脚中的单个元素来执行此操作。

相关内容