Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/huxuan/resumecls-example
Examples to typeset resume both in Chinese and English with resumecls.
https://github.com/huxuan/resumecls-example
Last synced: 20 days ago
JSON representation
Examples to typeset resume both in Chinese and English with resumecls.
- Host: GitHub
- URL: https://github.com/huxuan/resumecls-example
- Owner: huxuan
- Created: 2013-03-16T08:20:10.000Z (almost 12 years ago)
- Default Branch: master
- Last Pushed: 2020-04-20T14:32:11.000Z (over 4 years ago)
- Last Synced: 2024-10-28T21:05:12.637Z (2 months ago)
- Language: TeX
- Homepage: https://www.overleaf.com/latex/templates/resumecls-example/xncvhkjgyjvf
- Size: 232 KB
- Stars: 39
- Watchers: 7
- Forks: 33
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# resumecls-example
Examples to typeset resume both in Chinese and English with [resumecls](https://ctan.org/pkg/resumecls).
## Online Preview & Edit (with Overleaf Template)
An overleaf template is available [here](https://www.overleaf.com/latex/templates/resumecls-example/xncvhkjgyjvf) for preview.
You can also edit it directly on the overleaf.
## Offline Usage
```shell
git clone git://github.com/huxuan/resumecls-example.git
cd resumecls-example
# Modify resume-en.tex resume-en.tex resume.bib (bib is optional).
# Compile via Makefile or LaTeX commands (More info below).
```## Offline Compile
### Makefile
```shell
make resume # get both resume-en.pdf & resume-zh.pdf
make resume-en # get resume-en.pdf
make resume-zh # get resume-zh.pdf
```### LaTeX
```shell
xelatex .tex
bibtex
xelatex .tex
xelatex .tex
```Notes:
- To get the English version, replace `` with 'resume-en'.
- To get the Chinese version, replace `` with 'resume-zh'.
- If no bib info is needed, the first two steps can be skipped.