想要在页眉上添加一行,左侧为徽标,右侧为名称

想要在页眉上添加一行,左侧为徽标,右侧为名称

我正在尝试写一封求职信,左侧标题上有一个徽标,右侧标题上是我的姓名,页面顶部有一条横线。目前我有这样的内容:

    \documentclass[11pt,article, garamond addrfromright]{newlfm}
\usepackage{csquotes}
\unprbottom{1cm}
\usepackage{soul}
\usepackage{graphicx}
\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{soul}
\usepackage{lastpage,calc}
\usepackage{eurosym}
\newsavebox{\Ltlfoot}
\sbox{\Ltlfoot}{\scalebox{.65}{Tax Administration Research Centre, 
        University of Exeter Business School,
        Streatham Court,
        Rennes Drive,
        Exeter EX4 4PU}}
\newlength{\myfootheight}
\settoheight{\myfootheight}{\usebox{\Ltlfoot}}


\newsavebox{\Luiuc}\sbox{\Luiuc}{\parbox[b]{2.7in}{\vspace{.5in}
    {\includegraphics[width=1\linewidth]{example-image}}}}



\makeletterhead{Uiuc}{%
  \Lfooter{\usebox{\Ltlfoot}}%
  \Lheader{\usebox{\Luiuc}\vspace{-50pt}}}
\Rfooter{\thepage\ of \pageref{LastPage}}
\lfooter{\usebox{\Ltlfoot}}
\rfooter{\thepage\ of \pageref{LastPage}}

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

\lthUiuc
\namefrom{xxx \\
xxx \\
xxx \\
University of Exeter Business School}
\addrfrom{
    xxx\\
    xxx \\
    xxx
}
\phonefrom{xxx}
\emailfrom{xxx}


\addrto{%
xxx\\
xxx \\
xxx \\
xxx
}

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


Sample Text 


\end{newlfm}
\end{document}

我很喜欢页脚。但我不知道如何在页眉左侧插入名称并在顶部页眉上插入一条线。

在此先感谢您的帮助。

相关内容