mkhekare commited on
Commit
52af948
·
verified ·
1 Parent(s): 864f5f7

Create templates/ats_template.tex

Browse files
Files changed (1) hide show
  1. templates/ats_template.tex +58 -0
templates/ats_template.tex ADDED
@@ -0,0 +1,58 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ \documentclass[12pt]{resume}
2
+ \usepackage[left=0.5in, right=0.5in, top=0.4in, bottom=0.4in]{geometry}
3
+ \usepackage[hidelinks]{hyperref}
4
+ \usepackage{enumitem}
5
+ \usepackage{parskip}
6
+ \usepackage{fontawesome5}
7
+
8
+ \newcommand{\rSection}[1]{
9
+ \vspace{4pt}
10
+ {\large \textbf{#1} \vspace{-8pt} \hrule \vspace{6pt}}
11
+ }
12
+
13
+ \name{\parbox{\linewidth}{\centering \Huge \textbf{\VAR{name}} \\ \normalsize}}
14
+
15
+ \begin{document}
16
+
17
+ % Contact Info
18
+ \vspace{-20pt}
19
+ \begin{center}
20
+ \small
21
+ \faEnvelope \hspace{2pt} \href{mailto:\VAR{email}}{\VAR{email}} \hspace{6pt} | \hspace{6pt}
22
+ \faPhone \hspace{2pt} \VAR{phone} \hspace{6pt} | \hspace{6pt}
23
+ \faLinkedin \hspace{2pt} \href{\VAR{linkedin}}{LinkedIn} \hspace{6pt} | \hspace{6pt}
24
+ \faGithub \hspace{2pt} \href{https://github.com/}{GitHub}
25
+ \end{center}
26
+ \vspace{-8pt}
27
+
28
+ \small
29
+
30
+ % Professional Summary
31
+ \begin{rSection}{Professional Summary}
32
+ \VAR{summary}
33
+ \end{rSection}
34
+
35
+ % Skills
36
+ \begin{rSection}{Skills}
37
+ \begin{tabular}{ @{} >{\bfseries}l @{\hspace{6ex}} l }
38
+ Technical Skills & \VAR{skills} \\
39
+ Certifications & \VAR{certifications}
40
+ \end{tabular}
41
+ \end{rSection}
42
+
43
+ % Experience
44
+ \begin{rSection}{Professional Experience}
45
+ \VAR{experience}
46
+ \end{rSection}
47
+
48
+ % Education
49
+ \begin{rSection}{Education}
50
+ \VAR{education}
51
+ \end{rSection}
52
+
53
+ % Projects
54
+ \begin{rSection}{Projects}
55
+ \VAR{projects}
56
+ \end{rSection}
57
+
58
+ \end{document}