简历上未显示页脚

简历上未显示页脚

我一直无法在简历中显示页脚。以下分别是文件.cls.tex文件的链接。

.cls文件 resume.cls 文件

.tex文件 resume.tex 文件

抱歉,链接到 pastebin,但.cls文件太长了,我觉得将其复制并粘贴到这里会不美观。

答案1

此类resume不期望使用页眉或页脚。查询简历类中的\textheight\paperheight和的默认值:\footskip

\documentclass[margin,line]{resume}

\begin{document}

\begin{resume}
The value for \verb+\textheight+ is \the\textheight.

The value for \verb+\paperheight+ is \the\paperheight.

The value for \verb+\footskip+ is \the\footskip.
\end{resume}

\end{document}

得到:

在此处输入图片描述

其中一个有\textheight+\footskip>\paperheight,因此页脚将在物理页面之外排版。为了防止这种情况,请重新分配\textheight(和\footskip)的值;例如:

\documentclass[margin,line]{resume}
\usepackage{fancyhdr}

\textheight=10in
\footskip=25pt

\fancyhf{} % clear all header and footer fields
\renewcommand{\headrulewidth}{0pt} % no line in header area
\fancyfoot[C]{\today} % other info in "inner" position of footer line
\pagestyle{fancy}

\begin{document}

\begin{resume}
text
\end{resume}

\end{document}

一些与问题无关的评论:该resume课程似乎有些“老旧”;也许您可以考虑使用更现代的方法;特别是,该课程(以及您的文档)使用过时的双字母字体开关(\bf,,\sc...);您应该使用适当的开关(\bfseries,,\scshape...)。

相关内容