-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathresume.tex
More file actions
50 lines (40 loc) · 1.66 KB
/
resume.tex
File metadata and controls
50 lines (40 loc) · 1.66 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
% =============================================================================
% resume.tex — Main Resume Document
% =============================================================================
%
% QUICK START:
% 1. Edit files in the resume/ folder with your information
% 2. Build with: xelatex resume.tex
% 3. Output: resume.pdf
%
% STRUCTURE:
% resume/header.tex — Name, contact info, links, summary
% resume/skills.tex — Technical skills by category
% resume/experience.tex — Work history with achievements
% resume/certifications.tex— Professional certifications (optional)
% resume/awards.tex — Awards and recognition (optional)
% resume/education.tex — Educational background
%
% CUSTOMIZATION:
% - To remove a section, comment out its \input line below
% - To reorder sections, change the order of \input lines
% - To customize colors/fonts/spacing, edit resume.cls
%
% =============================================================================
\documentclass[classic]{resume}
% Load header data (name, contact, summary) before document begins
\input{resume/header}
\begin{document}
% Render the header (name, contact info, links, summary)
\makeheader
% Skills section — technical competencies grouped by category
\input{resume/skills}
% Experience section — work history with achievements
\input{resume/experience}
% Certifications section — professional credentials (remove if not needed)
\input{resume/certifications}
% Awards section — recognition and honors (remove if not needed)
\input{resume/awards}
% Education section — degrees and academic background
\input{resume/education}
\end{document}