简历结束边距不可改变

简历结束边距不可改变

我正在使用 res.cls 制作简历,看起来很棒,只是它将最后两行放在了下一页,留下了将近一英寸半的下边距,而且我无法使用几何图形调整下边距,否则会丢失边距中的部分。如何调整下边距

% LaTeX resume using res.cls
\documentclass[margin,11pt]{res}

\usepackage[none]{hyphenat}%%%%
\usepackage{anysize}
\setlength{\textwidth}{5.8in} % set width of text portion
\usepackage{color}
\usepackage[normalem]{ulem}
\usepackage{url}

\begin{document}
\marginsize{.75in}{.75in}{.5in}{.5in}
\begingroup
    \fontsize{14pt}{12pt}\selectfont
    \centerline{\bf John Doe}
\endgroup

\moveleft\hoffset\vbox{\hrule width 7.1in height 1pt}\smallskip
    123 Main ST \hfill (321) 654-0987 \\
    [email protected] \hfill \ULurl{https://github.com/jdoe}

\begin{resume}

\end{resume}
\end{document}

答案1

添加

\enlargethispage{2\baselineskip}

在感兴趣的页面上添加 2 行。或者,您可以通过添加

\setlength{\textheight}{\dimexpr\textheight+2\baselineskip}

你的序言。

相关内容