https://github.com/bitroniq/ten-seconds-cv
A LaTeX resume/cv template for DevOps Engineer
https://github.com/bitroniq/ten-seconds-cv
cv cv-template latex latex-document latex-template resume resume-template tex
Last synced: 2 months ago
JSON representation
A LaTeX resume/cv template for DevOps Engineer
- Host: GitHub
- URL: https://github.com/bitroniq/ten-seconds-cv
- Owner: bitroniq
- License: mit
- Created: 2019-12-10T12:34:13.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2019-12-18T10:12:51.000Z (over 5 years ago)
- Last Synced: 2025-03-27T04:33:28.866Z (3 months ago)
- Topics: cv, cv-template, latex, latex-document, latex-template, resume, resume-template, tex
- Language: TeX
- Size: 1.56 MB
- Stars: 5
- Watchers: 1
- Forks: 6
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ten-seconds-cv
> A LaTeX resume/cv template for DevOps Engineer to make quick update and
> pdf creationThis template I use for my own resume/CV.

## Install pre-requisites (Windows)
1. Install [MiKTeX](https://miktex.org/howto/install-miktex), a TeX
distribution for Windows that includes a large number of major packages.2. Install an editor to edit and compile LaTeX documents:
- [TexWorks](http://www.tug.org/texworks/) (comes with MiKTeX)
- [TeXstudio](http://www.texstudio.org/)
- [Texmaker](http://www.xm1math.net/texmaker/)Once both the distribution and editor are installed, clone this repository
using `git clone` and open the template.tex file in your editor.**Important**: Make sure to compile with XeLaTeX, not PDFLaTeX.
You're good to go!## Install pre-requisites (Debian/Ubuntu)
* texlive: `sudo apt-get install texlive`
* texlive-xetex: `sudo apt-get install texlive-xetex`
* texlive-lualatex: `sudo apt-get install texlive-luatex`
* texlive-math-extra: `sudo apt-get install texlive-math-extra`
* texlive-fonts-extra: `sudo apt-get install texlive-fonts-extra`
* texlive-pstricks: `sudo apt-get install texlive-pstricks`
* texmaker: `sudo apt-get install texmaker`## Build (Windows)
Open `.tex` file with `TexMaker` or `TexWorks` and compile using XeLaTeX
## Build (Debian/Ubuntu)
make all
## FontAwesom support
To enable fontawesome support, include the fontawesome package in the `.tex` file
\usepackage{fontawesome}
and compile the document using LuaLaTex
## References
The elements comes from several templates, including:
1. [Font Awesome Icons](https://faicons.com/)
2. [Carmine Spagnuolo's Twenty Seconds Curriculum Vitae](https://github.com/spagnuolocarmine/TwentySecondsCurriculumVitae-LaTex)
3. [Carmine Benedetto's Smart Fancy LaTeX CV](https://github.com/neoben/smart-fancy-latex-cv)
4. [Adrien Friggeri's Fancy CV](https://www.sharelatex.com/templates/52fb8c1f33621a613683ecad)
5. [Harsh Gadgil opensorcer/Data-Engineer-Resume-LaTeX](https://github.com/opensorceror/Data-Engineer-Resume-LaTeX)## License
> MIT License
> Copyright (c) 2019 Piotr Kowalski
> Permission is hereby granted, free of charge, to any person obtaining a copy
> of this software and associated documentation files (the "Software"), to deal
> in the Software without restriction, including without limitation the rights
> to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
> copies of the Software, and to permit persons to whom the Software is
> furnished to do so, subject to the following conditions:> The above copyright notice and this permission notice shall be included in all
> copies or substantial portions of the Software.> THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
> IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
> FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
> AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
> LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
> OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
> SOFTWARE.