带页码的页脚

带页码的页脚

我必须为我的管理部门写一份考试。他们希望每页的页脚包含以下信息:

在此处输入图片描述

唯一需要改变的元素是右下角的:页码和总页数。

我搜索了示例(但不知道如何将“cartouche”翻译成英文),并阅读了 的文档fancyhdr,但并没有理解所有内容。我更希望有一个示例来展示可以做什么,或者一些示例链接(如果有的话)。

答案1

也许这可以让你开始:根据需要进行调整。(显然,如果你不想使用 sans 字体,你可以删除\usepackage{tgheros}and :我只是想模仿图片。)\sffamily

\documentclass{article}
\usepackage{lastpage}% to reference total page number
\usepackage{tgheros}% approximates font in your image
% reset style
\usepackage{fancyhdr}
\renewcommand{\headrulewidth}{0pt}
\pagestyle{fancy}% pages have the fancy footer by default
\fancyhf{}
% for the footer
\fancyfoot[CO,CE]{%
\sffamily\footnotesize% for smaller sans serif font
\def\arraystretch{1.7}% put some vertical padding in cells
\setlength{\tabcolsep}{1em}% put some horizontal padding in cells
\begin{tabular}{|c|c|c|c|c|} \hline
2023 & \multicolumn{3}{|c|}{BTS SIO} & Sujet \\ \hline
     & E21 Mathématiques pour l'informatique & Coef: 2 & Durée : 2 h 00 & \thepage\ / \pageref{LastPage} \\ \hline
\end{tabular}%
}

\usepackage{lipsum}% for dummy text
\begin{document}
\thispagestyle{empty}% no footer first page
\lipsum[1-50]% dummy text
\thispagestyle{plain}% simpler footer last page
\end{document}

页脚示例

相关内容