summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/doc/xelatex/resumecls/example/README.md
blob: 07c17e5b173afa8ab450ffd54502020ca23e848e (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
# resumecls-example

Examples to typeset resume both in Chinese and English with resumecls.

## Preview

An online version for preview is available on [overleaf](https://www.overleaf.com/read/yrtmzwhtzwtz).

## 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 the English version, replace `<resume>` with 'resume-en'.
- To get the Chinese version, replace `<resume>` with 'resume-zh'.
- If no bib info is needed, the first two steps can be skipped.