我一直无法在简历中显示页脚。以下分别是文件.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
...)。