我正在尝试写一封求职信,第一页有页眉和页脚,但连续的页面上没有页眉。我也很难在第一页添加页码。任何帮助都将不胜感激。
\documentclass[10pt,stdletter, times, addrfromright]{newlfm}
\usepackage{charter}
\pagenumbering{arabic}
\usepackage{csquotes}
\widowpenalty=1000
\clubpenalty=1000
\unprbottom{1cm}
\newsavebox{\Luiuc}
\sbox{\Luiuc}{%
\parbox[b]{1.75in}{%
\vspace{0.5in}%
\includegraphics[scale=.15]
{RSCAS}%
}%
}%
\makeletterhead{Uiuc}{\Lheader{\usebox{\Luiuc}}}
\makeatletter
\let\ps@othhead\ps@fancy
\makeatother
\rfoot{ \thepage}
\Cfooter{\tiny Robert Schuman Center for Advanced Studies
\\ European University Institute, Via dei Roccettini 9, I-50014 San Domenico di Fiesole (FI) Italy}
\newlfmP{headermarginskip=20pt}
\newlfmP{sigsize=50pt}
\newlfmP{dateskipafter=-70pt}
\newlfmP{addrfromemail}
\PhrEmail{Email}
\lthUiuc
\namefrom{John D'Attoma \\
Postdoctoral Research Fellow \\
Robert Schuman Centre for Advanced Studies \\
European University Institute}
\addrfrom{
John D'Attoma\\
Postdoctoral Research Fellow\\
Robert Schuman Centre for Advanced Studies
}
\emailfrom{[email protected]}
\addrto{%
The New School for Social Research\\
Department of Politics\\
66 West 12th Street \\
New York, NY 10011}
\greetto{Dear Members of the Search Committee:}
\closeline{Best Regards,}
\begin{document}
\begin{newlfm}
答案1
我会放弃newlfm
并选择一些限制较少的内容。以下是您在 good ol' 下的文档副本article
:
\documentclass[10pt]{article}
\usepackage{charter,fancyhdr,geometry,graphicx}
\usepackage{lipsum}% For this example
\geometry{paper=letterpaper,
hmargin=1in,
vmargin=.5in,
includefoot
}
\pagestyle{fancy}
\fancyhf{}% Clear header/footer
\renewcommand{\headrulewidth}{0pt}% No header rule
\renewcommand{\footrulewidth}{1pt}% 1pt footer rule
\fancyfoot[C]{%
\tiny
\begin{tabular}{c}
Robert Schuman Center for Advanced Studies \\
European University Institute, Via dei Roccettini 9, I-50014 San Domenico di Fiesole (FI) Italy
\end{tabular}}
\fancyfoot[R]{\thepage}
\setlength{\parindent}{0pt}% No paragraph indent
\setlength{\parskip}{.5\baselineskip}
\begin{document}
\includegraphics[scale=.15]{example-image} \\% Your logo here
\rule{\textwidth}{1pt}
\hfill
\begin{tabular}{l@{}}
John D'Attoma \\
Postdoctoral Research Fellow \\
Robert Schuman Centre for Advanced Studies \\
Email: [email protected]
\end{tabular}
\bigskip\bigskip
\begin{tabular}[t]{@{}l}
The New School for Social Research\\
Department of Politics\\
66 West 12th Street \\
New York, NY 10011
\end{tabular}
\hfill
\today
\bigskip
Dear Members of the Search Committee:
\bigskip
\lipsum[1-7]
\bigskip
\hfill
\begin{tabular}{l@{}}
Best Regards, \\[50pt]
John D'Attoma \\
Postdoctoral Research Fellow \\
Robert Schuman Centre for Advanced Studies \\
European University Institute
\end{tabular}
\end{document}
离开你的班级之前的输出:
使用上面的代码输出: