Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ashwanthkumar/resume
https://github.com/ashwanthkumar/resume
Last synced: about 6 hours ago
JSON representation
- Host: GitHub
- URL: https://github.com/ashwanthkumar/resume
- Owner: ashwanthkumar
- Created: 2016-03-16T11:25:02.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2024-08-16T06:08:48.000Z (3 months ago)
- Last Synced: 2024-08-16T07:27:26.881Z (3 months ago)
- Language: TeX
- Size: 2.09 MB
- Stars: 2
- Watchers: 2
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Résumé
Attempt at building LaTeX version of my resume inspired from https://github.com/posquit0/Awesome-CV.You can access my resume online at https://ashwanthkumar.in/resume.pdf.
## Usage
```
$ rm -f resume.pdf
$ xelatex -interaction=nonstopmode resume.tex
$ open resume.pdf
```## Installing xelatex on Mac
```
brew install basictex
eval "$(/usr/libexec/path_helper)"
# Yeah we need sudo to update / install packages now (on M1 Monetery onwards)
sudo tlmgr update --self
cat packages | xargs -I% tlmgr install %
```## Installing new packages
If you're not set already, configure `tlmgr` to the archived version of the repository
```
tlmgr option repository ftp://tug.org/historic/systems/texlive/2015/tlnet-final
```
Ref - http://tex.stackexchange.com/a/313823For installing any custom packages
```
tlmgr install packagename
```
Ref - http://tex.stackexchange.com/a/5106## Note to self
If you're installing new packages, please keep the `packages` file updated. The current list is not complete enough to start from scratch but it's a start.## For Ubuntu / Debian based systems
### Setup `xelatex`
```
sudo apt-get install -y texlive-xetex xzdec
mkdir ~/texmf
pushd ~/texmf
tlmgr init-usertree
popd
```### Install the necessary packages
```
cat packages | xargs -I% tlmgr install %
```