https://github.com/subidit/rover-resume
Beautiful and simple LaTeX résumé template.
https://github.com/subidit/rover-resume
awesome cv cv-templates latex latex-template resume resume-template typography
Last synced: 7 months ago
JSON representation
Beautiful and simple LaTeX résumé template.
- Host: GitHub
- URL: https://github.com/subidit/rover-resume
- Owner: subidit
- License: cc-by-4.0
- Created: 2023-10-26T07:16:06.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2023-12-18T15:34:48.000Z (over 2 years ago)
- Last Synced: 2023-12-18T18:04:00.618Z (over 2 years ago)
- Topics: awesome, cv, cv-templates, latex, latex-template, resume, resume-template, typography
- Language: TeX
- Homepage:
- Size: 5.48 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-ccamel - subidit/rover-resume - ATS friendly LaTeX resume template. Create a unique looking CV from scratch. (TeX)
README
This repository offers a collection of simple yet effective résumé templates built using basic LaTeX commands. The BASE ROVER template, for instance, requires only about 10 lines of code to set up a clean and minimal résumé format. Unlike other templates that rely on custom résumé classes — forcing you to learn new commands and options — these templates are designed to be straightforward and easy to use.
## Motivation
Creating a one-page résumé shouldn't require 500+ lines of code filled with custom commands that are difficult to modify or troubleshoot. Frustrated by the complexity and lack of simplicity in existing templates, I set out to design a clean and intuitive solution. This template is built with basic design principles in mind like *Hierarchy*, *Repetition*, and *Alignment* to ensure a professional and visually appealing result without unnecessary complexity.
The following code block serves as the foundational structure for each entry in your résumé.
```latex
\subsection{Designation, Duration}
\subsubsection{Company, Location}
\begin{itemize}
\item Bullet points
\item tailored to the
\item job description.
\end{itemize}
```
## Screenshots
| [](/templates/base%20rover/) | [](/templates/star%20rover/) |
|:----:|:-----:|
| Base Rover Template | Star Rover Template |
| [](/templates/week%20rover/main-rover.tex) | [](/templates/office%20rover/office-rover.tex) |
|:----:|:-----:|
| Monday - Week Rover | Office Rover |
| [](/templates/milky%20rover/) | [](/templates/fancy%20rover/) |
|:----:|:-----:|
| Milky Rover Template | Fancy Rover Template |
*Milky Rover Template is a recreation of [Butterick’s practical typography](https://practicaltypography.com/resumes.html) résumé template.
## Features
- Single or Double lined title option.
- Multiple ways to format the Name & Contact info banner.
- ATS friendly.
- Works with pre-installed LaTeX fonts.
- Uses `article` class. No need to learn the working of any custom class.
- Uses typographic best practices.
- Your content looks clean and structured.
## Quick start
[Edit on Overleaf](https://www.overleaf.com/latex/templates/rover-resume/bpzqtssvfgsn). Or just copy paste the code into your favorite LaTeX editor.
## Getting Started
1. **Get the Repository**: Fork or Download this repository to your local machine.
2. **Select a Template**: Choose a template from the available options.
3. **Fill in Your Details**: Personalize the template by filling in your information.
### Tips for Using LaTeX Commands
- **Sectioning**: Use `\section` for major sections like Education, Experience, Certifications, Awards, Skills & Interests, etc.
- **Subsectioning**: Employ `\subsection{}` and `\subsubsection` for primary and secondary titles such as Institution Name, Position Title, Duration, etc.
- **Bullet Points**: Use `itemize` lists for creating bullet points.
## Known Issue
Package hyperref Warning:
This occurs because `hyperref` package creates clickable texts for both internal and external links. When generating a PDF, certain elements like bookmarks, metadata, and hyperlinks are encoded as **PDF strings**. Since `\section{}`, `\subsection{}` etc. are used in the *Table of contents* (i.e. bookmarks), certain LaTeX commands (like `\hfill`) or control sequences doesn't make sense in this context.
When `hyperref` encounters the `\hfill` command while processing a piece of text that needs to be converted into a PDF string, it cannot include this command in the output PDF string. As a result, it removes the command and issues a warning to notify you of this action.
We can circumvents this issue by disabling the creation of bookmarks as shown below.
```latex
\usepackage[bookmarks=false]{hyperref}
```
> [!CAUTION]
> To avoid generating warnings, the `bookmarks` option in the `hyperref` package must be set during package loading with `\usepackage[bookmarks=false]{hyperref}`. You can use `\hypersetup{}` for everything else.
## Support
For inquiries or assistance, visit the [Discussions](https://github.com/subidit/rover-resume/discussions) tab.
Feel free to contribute to the project or provide feedback by opening an issue or submitting a pull request.
Happy job hunting!
## License


Rover Resume by Subidit is licensed under CC BY 4.0