summaryrefslogtreecommitdiff
path: root/macros/xetex/latex/resumecls/README.md
blob: 7fb713493e7eb83463ad6114ce17af5ba8628543 (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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
# 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
```