学术求职信标题:徽标(左)与地址(右)对齐?

学术求职信标题:徽标(左)与地址(右)对齐?

我正在撰写一封学术求职信。尽管我花了一个小时研究软件包fancyhdr和各种求职信模板,但我还是无法做到:

  • 使我的大学徽标(PNG 或 PDF)显示在页眉的左上角,并显示我的地址水平对齐在右侧。

  • 这封信有多页,但标志/标题应该只出现在第一页。

  • 第 2 页和第 3 页的顶部边距不应留有太大空间。

我附上了一个使用老牌 MS Word 制作的完美格式示例。如果您有任何想法,我将不胜感激。

使用 MS Word 制作的完美求职信格式示例

答案1

以下内容可以作为模板:

在此处输入图片描述

\documentclass{article}

\usepackage[margin=1in]{geometry}
\usepackage[export]{adjustbox}
\usepackage{fancyhdr}
\usepackage{lipsum}

\setlength{\parindent}{0pt}% Remove paragraph indent

\pagestyle{fancy}
\fancyhf{}% Clear header/footer
\fancyfoot[R]{\itshape Page~\thepage~of~\csname @abspage@last\endcsname}
\renewcommand{\headrulewidth}{0pt}% Remove header rule

\begin{document}

\begin{tabular}[t]{@{} l @{}}
  \includegraphics[height=7\normalbaselineskip,valign=t]{example-image-1x1} \\
  \\
  \bfseries Faculty Search Committee \\
  \itshape Department of Cleverness \\
  \itshape Impressive University
\end{tabular}%
\hfill
\begin{tabular}[t]{@{} r @{}}
  \bfseries My Name \\
  \itshape Dept.\ of Science \\
  \itshape Prestigious University \\
  \itshape 000-000-0000 \\
  \itshape [email protected] \\
  \itshape www.google.com \\
  \\
  January 15, 2021
\end{tabular}

\bigskip

Dear members of the Search Committee,

\bigskip

\lipsum[1-20]

\end{document}

首先,“header”在第一页并没有被设置成header,而是两个tabular元素按需要堆叠在一起。

相关内容