-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathReference Letter.tex
More file actions
67 lines (52 loc) · 1.64 KB
/
Reference Letter.tex
File metadata and controls
67 lines (52 loc) · 1.64 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
\documentclass[11pt]{letter}
\usepackage[margin = 1in]{geometry}
\usepackage{graphicx}
\usepackage[export]{adjustbox}
\longindentation=0in % closing and signature on the left of page
% dark blue URLs and emails
\usepackage{hyperref,color}
\definecolor{darkblue}{rgb}{0.0,0.0,0.3}
\hypersetup{colorlinks,breaklinks,
linkcolor=darkblue,urlcolor=darkblue,
anchorcolor=darkblue,citecolor=darkblue}
% For \email{ADDRESS}, links ADDRESS to the url mailto:ADDRESS in teletype fixed-width font
\providecommand*\email[1]{\href{mailto:#1}{\texttt{#1}}}
% logo in left header for letterhead
\usepackage{fancyhdr}
\fancypagestyle{plain}{
\fancyhf{}
\fancyhead[L]{\includegraphics[width=.4\textwidth,left]{unc_logo.png}}
}
\pagestyle{plain}
% no header line
\renewcommand{\headrulewidth}{0pt}
\makeatletter
% assign plain page style to letter page types
\let\ps@empty\ps@plain
\let\ps@firstpage\ps@plain
% reduce space above signature
\renewcommand{\closing}[1]{\par\nobreak\vspace{\parskip}%
\stopbreaks
\noindent
\ifx\@empty\fromaddress\else
\hspace*{\longindentation}\fi
\parbox{\indentedwidth}{\raggedright
\ignorespaces #1\\[\medskipamount]%
\ifx\@empty\fromsig
\fromname
\else \fromsig \fi\strut}%
\par}
\makeatother
\usepackage{lipsum}
% letter info
\signature{\includegraphics[height=40pt]{signature.png} \\FIRSTNAME LASTNAME \\ TITLE}
\address{FIRSTNAME LASTNAME \\ DEPARTMENT \\ ADDRESS ONE \\ ADDRESS TWO \\ \email{EMAIL@DOMAIN.TLD}}
% letter
\begin{document}
\date{\today}
\begin{letter}{ORGANIZATION TITLE \\ ADDRESS ONE \\ ADDRESS TWO}
\opening{To Whom It May Concern:}
\lipsum[1-2]
\closing{Sincerely,}
\end{letter}
\end{document}