https://github.com/huxuan/resumecls
A LaTeX document class to typeset a resume or cv both in English and Chinese with more ease and flexibility.
https://github.com/huxuan/resumecls
Last synced: 5 months ago
JSON representation
A LaTeX document class to typeset a resume or cv both in English and Chinese with more ease and flexibility.
- Host: GitHub
- URL: https://github.com/huxuan/resumecls
- Owner: huxuan
- Created: 2012-12-18T11:10:27.000Z (almost 13 years ago)
- Default Branch: master
- Last Pushed: 2020-04-20T14:41:32.000Z (over 5 years ago)
- Last Synced: 2025-04-03T11:15:33.847Z (8 months ago)
- Language: TeX
- Homepage: http://www.ctan.org/pkg/resumecls
- Size: 164 KB
- Stars: 87
- Watchers: 7
- Forks: 36
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# resumecls
A LaTeX document class to typeset a resume or cv both in English and Chinese with more ease and flexibility.
## 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.
## Installation (for Offline Usage)
Since [`resumecls`](http://www.ctan.org/pkg/resumecls) is included in the CTAN.
You can install it by any package managers.
Take `tlgmr` as example,
```shell
tlmgr install resumecls
```
## Usage / Examples
please refer to [`resumecls-example`](https://github.com/huxuan/resumecls-example).
## Offline Compile
To get the document class file and document manually, you can compile via Makefile or LaTeX commands.
### Makefile
#### Get resumecls.cls
```shell
make cls
```
#### Get resumecls.pdf
```shell
make doc
```
#### Clean intermediate generated files
```shell
make clean
```
#### Clean for distribution
```shell
make distclean
```
### LaTeX
#### Get resumecls.cls
```shell
latex resumecls.ins
```
#### Get resumecls.pdf
```shell
xelatex resumecls.dtx
makeindex -s gind.ist -o resumecls.ind resumecls.idx
makeindex -s gglo.ist -o resumecls.gls resumecls.glo
xelatex resumecls.dtx
xelatex resumecls.dtx
```