A clean, professional LaTeX template for creating curriculum vitae (CV) documents. This template is based on the Curve CV template by LianTze Lim and has been customized for professional use.
- Clean Design: Professional layout with customizable colors and fonts
- Modular Structure: Organized into separate sections for easy maintenance
- Profile Photo Support: Optional profile picture integration
- Contact Information: Prominent display of contact details with icons
- Section-based Organization: Personal, Education, Employment, Certifications, and Skills sections
- Responsive Layout: Optimized for A4 paper format
- Font Awesome Icons: Professional icons for contact information and sections
simple_cv/
βββ simple_cv.tex # Main LaTeX document
βββ settings.sty # Style definitions and packages
βββ sections/ # CV content sections
β βββ personal.tex # Personal information
β βββ education.tex # Educational background
β βββ employment.tex # Work experience
β βββ certifications.tex # Professional certifications
β βββ skills.tex # Skills and competencies
βββ img/ # Images directory
β βββ bnuyy.jpeg # Profile photo
βββ simple_cv.pdf # Generated PDF output
To compile this LaTeX document, you need:
- LaTeX Distribution: TeX Live, MiKTeX, or MacTeX
- Required Packages:
curve
document classfontawesome5
for iconsbiblatex
for bibliography (optional)tcolorbox
for stylingtikz
for graphicsgeometry
for page layouthyperref
for links
-
Clone or download this repository
-
Install LaTeX if you haven't already:
- macOS: Install MacTeX
- Windows: Install MiKTeX or TeX Live
- Linux: Install TeX Live via package manager
-
Install required packages (if not already included):
# For TeX Live tlmgr install curve fontawesome5 biblatex tcolorbox tikz geometry hyperref
# Compile the main document
pdflatex simple_cv.tex
# If using bibliography (optional)
pdflatex simple_cv.tex
biber simple_cv
pdflatex simple_cv.tex
Edit sections/personal.tex
to update your personal details:
\entry*[Address]%
Your Address Here
\entry*[Birth date]%
Your Birth Date, Location
Update the header in simple_cv.tex
:
\leftheader{%
\faLinkedin {\href{https://www.linkedin.com/in/yourprofile/}{in/yourprofile}} \hfill
\faEnvelope[regular] {\href{mailto:your.email@example.com}{your.email@example.com}} \hfill
\faIcon{mobile-alt} {\href{tel:+123456789}{+123456789}} \par
\vspace{0.4cm}
{\LARGE\bfseries\sffamily Your Name} \par
\vspace{0.05cm}
\vspace{0.2cm}
\textcolor{TextColor}{Your professional summary here.}
}
- Place your photo in the
img/
directory - Update the photo path in
simple_cv.tex
:\photo[r]{img/your-photo-name}
Modify colors in simple_cv.tex
:
\definecolor{BackgroundColor}{HTML}{f2f3f5}
\definecolor{TextColor}{HTML}{6C6C6C}
\definecolor{RubricTextColor}{HTML}{000080}
Edit the respective .tex
files in the sections/
directory:
education.tex
- Add your educational backgroundemployment.tex
- Add your work experiencecertifications.tex
- Add professional certificationsskills.tex
- Add your skills and competencies
More sections can be added though.
This template is based on the Curve CV template by LianTze Lim, available under the Creative Commons Attribution 4.0 License. The original template can be found at: https://www.overleaf.com/latex/templates/a-customised-curve-cv/mvmbhkwsnmwv
Feel free to fork this repository and submit pull requests for improvements. Suggestions for new features or bug fixes are welcome!