forked from thepranaygupta/resume-latex-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathresume.tex
53 lines (41 loc) · 1.35 KB
/
resume.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
\documentclass[a4paper,10pt]{article}
\usepackage[utf8]{inputenc}
%====================
%
% Files: resume.tex: Main file
% _header.tex: header code
% TLCresume.sty: style file containing formatting details
% section/objective: https://www.indeed.com/career-advice/resumes-cover-letters/resume-objective-examples
% section/skills: table of skills
% section/experience: projects or roles
% section/education: schools and stuff
% section/activities: optional, could comment out in resume.tex.
%
%====================
\usepackage{TLCresume}
%====================
% CONTACT INFORMATION
%====================
\def\name{Pranay Gupta} % Name Here
\def\phone{(+91) 790806XXXX}
\def\city{Gugurgam, Haryana, IN}
\def\email{pranaygupta.aec@gmail.com}
\def\LinkedIn{thepranaygupta} % linkedin.com/in/______
\def\github{thepranaygupta} % github username
\def\role{Software Development Engineer} % JOB TITLE
\input{_header}
\begin{document}
% \input{sections/objective}
\section{Skills}
\input{sections/skills}
\section{Work Experience}
\input{sections/experience}
\section{Projects}
\input{sections/projects}
\section{Education}
\input{sections/education}
% make a newpage wherever it is a clean break
% \newpage
\section{Activities}
\input{sections/activities}
\end{document}