-
Notifications
You must be signed in to change notification settings - Fork 0
/
cover_letter.tex
88 lines (66 loc) · 1.74 KB
/
cover_letter.tex
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
%-------------------------
% Cover Letter in LaTeX
% Author : Dalton Luce
% License : MIT
%------------------------
\documentclass[letterpaper,10pt]{article}
\usepackage[empty]{fullpage}
\usepackage{titlesec}
% \usepackage[usenames,dvipsnames]{color}
\usepackage{enumitem}
\usepackage[hidelinks]{hyperref}
\usepackage{fancyhdr}
% \usepackage{multicol}
\usepackage{tabularx}
\input{glyphtounicode}
\usepackage{lipsum}
\usepackage{xparse}
\usepackage{ragged2e} %allows for right aligned / left aligned text instead of all justified
\pagestyle{fancy}
\fancyhf{}
\fancyfoot{}
\renewcommand{\headrulewidth}{0pt}
\renewcommand{\footrulewidth}{0pt}
\urlstyle{same}
\raggedbottom
\raggedright
\setlength{\tabcolsep}{0in}
% Sections formatting
\titleformat{\section}{
\titlerule\vspace{1pt}\scshape\raggedright\Large
}{}{0em}{\vspace{-5pt}}
% Ensure that generated PDF is machine readable/ATS parsable
\pdfgentounicode=1
% Use filled circles for bullet points
\renewcommand\labelitemi{\small\textbullet}
\setlength{\parskip}{\baselineskip}%
\setlength{\parindent}{0pt}%
%-------------------------------------------
% COVER LETTER STARTS HERE
\begin{document}
%----------HEADING----------
\begin{minipage}[t]{0.5\textwidth}
\vspace*{\fill}
\huge \textbf{Dalton Luce}
\vspace*{\fill}
\end{minipage}\hfill
\begin{minipage}[t]{0.3\textwidth}
\setlength{\baselineskip}{15pt}
\RaggedLeft
Boston, MA \\
\href{https://www.linkedin.com/in/dalton-luce/}{\underline{LinkedIn}}
\end{minipage}
\vspace{10pt}
\noindent\hrulefill
\vspace{10pt}
\today
Recipient's Name \\
Company's Name \\
Company's Address \\
City, State, ZIP Code
Dear [Recipient's Name],
\lipsum[1-4]
Sincerely, \\
Dalton Luce
%-------------------------------------------
\end{document}