blob: d5ce36f77d125a2fbda0d9ae6aaf8cb14872f735 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
# resumecls-example
Examples to typeset resume in both Chinese and English by using resumecls
## Preview
- [resume-en.pdf](https://github.com/huxuan/resumecls-example/blob/master/resume-en.pdf?raw=true)
- [resume-zh.pdf](https://github.com/huxuan/resumecls-example/blob/master/resume-zh.pdf?raw=true)
## Workflow
```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 command (More info below)
```
## 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 <resume>.tex
bibtex <resume>
xelatex <resume>.tex
xelatex <resume>.tex
```
Notes:
- To get English version, replace <resume> with 'resume-en'
- To get Chinese version, replace <resume> with 'resume-zh'
- If no bib info is needed, the first two steps can be passed
|