删除日期和信头徽标之间的空格

删除日期和信头徽标之间的空格

我正在写一封求职信,想把它控制在两页以内,但我无法去掉徽标和日期之间的巨大空白。任何帮助都将不胜感激。谢谢。

\documentclass[10.5pt,article, times, addrfromright]{newlfm}
\usepackage{csquotes}

\unprbottom{1cm}

\makeatletter

\g@addto@macro{\ps@ltrhead}{%

 \renewcommand{\headrulewidth}{0pt}%

\renewcommand{\footrulewidth}{0pt}%
}
\g@addto@macro{\ps@othhead}{%

\renewcommand{\headrulewidth}{0pt}%

\renewcommand{\footrulewidth}{0pt}%
}
\makeatother

\usepackage{lipsum}

\usepackage{lastpage,calc}

\newsavebox{\Ltlfoot}

\sbox{\Ltlfoot}{\tiny Robert Schuman Center for Advanced Studies

  European University Institute, Via dei Roccettini 9, I-50014 San Domenico di Fiesole (FI) Italy}}
\newlength{\myfootheight}
\settoheight{\myfootheight}{\usebox{\Ltlfoot}}

\newsavebox{\Luiuc}\sbox{\Luiuc}{\parbox[b]{1.75in}{\vspace{.5in}
    \includegraphics[width=1.2\linewidth]{both2}}}

\makeletterhead{Uiuc}{%

\Lfooter{\usebox{\Ltlfoot}}%

 \Lheader{\usebox{\Luiuc}}}

\Rfooter{\thepage\ of \pageref{LastPage}}

\lfooter{\usebox{\Ltlfoot}}

\rfooter{\thepage\ of \pageref{LastPage}}

\newlfmP{sigsize=5pt, minfoot=\myfootheight}
\newlfmP{addrfromphone}
\newlfmP{addrfromemail}

\lthUiuc
\namefrom{blah \\
job \\
Robert Schuman Centre for Advanced Studies \\
European }
\addrfrom{
    name\\
    job\\
    Studies
}
\emailfrom{email@email}


\addrto{%
address \\
}

\greetto{Dear Members of the Search Committee:}
\closeline{Best Regards,}
\begin{document}
\begin{newlfm}

答案1

代替

\Lheader{\usebox{\Luiuc}}

\Lheader{\usebox{\Luiuc}\vspace{-200pt}}

你可以使用任意你想要的值。对我来说这个方法很有效。

相关内容