Awesome CV LaTeX Template

repository·master·Indexed 12 days ago

https://github.com/posquit0/awesome-cv

A LaTeX template for creating professional CVs, Résumés, and Cover Letters using clean, semantic markup. Supports compilation via xelatex, Docker, or Overleaf.

Tokens
361
Snippets
1
Records
3
Agent score
49%

What's inside Awesome CV

  1. Compile your CV using xelatex or Docker

    master

    Once your .tex file is ready, you can generate the PDF using one of the following methods:

    Using xelatex

    Run the following command at your terminal:

    xelatex {your-cv}.tex

    Using Docker

    To compile using a Docker container (mapping your current directory to /doc inside the container):

    docker run --rm --user $(id -u):$(id -g) -i -w "/doc" -v "$PWD":/doc texlive/texlive:latest make

    In both cases, the process will output a {your-cv}.pdf file.

    xelatex {your-cv}.tex
  2. Install and Setup Awesome CV

    master

    Awesome CV requires a full TeX distribution to compile.

    Local Installation

    It is recommended to use TeX Live. You can install it from upstream or, on Linux systems, via:

    sudo apt-get install texlive-full

    Note: Package managers like apt may provide versions that are several years behind upstream.

    Docker Installation

    If you prefer not to install dependencies directly on your system, you can use Docker to run the compilation environment.