summaryrefslogtreecommitdiff
path: root/macros/xetex/latex/resumecls/README.md
blob: f9f39c8da4ed0d2fd0fdb14dc08b8fb81f9abbdc (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
# resumecls / [CTAN mirror](http://www.ctan.org/pkg/resumecls)

A LaTeX cls to typeset resume both in English and Chinese

# Usage / How to get it

- [`resumecls`](http://www.ctan.org/pkg/resumecls) has already been included in [CTAN](http://www.ctan.org/) Mirror.
- To get the cls file you only need to update local CTAN Packages.
- For how to use it you can refer to [`resumecls-example`](https://github.com/huxuan/resumecls-example) repo.

## Manual Compile

To get the cls file and document manually, you can make it either by Makefile or LaTeX command

### Compile by Makefile (Recommended if your os supported)

#### Get resumecls.cls
```shell
make cls
```

#### Get resumecls.pdf
```shell
make doc
```

#### Clean
Clean all generated files except for cls and pdf
```shell
make clean
```

#### DistClean
Clean all generated files
```shell
make distclean
```

### Compile by LaTeX command

#### 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
```