blob: d9514a146b13bf4f0ecffc73c1957273fd69ce71 (
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
|
# The Not So Short Introduction To LaTeX (Chinese Edition), v6.0
## License
This document is distributed under the **GNU Free Documentation License, version 1.3**.
For detailed information, see the section entitled 'GNU Free Documentation License' in the document, or the source code file `fdl.tex`.
## Preparation for typesetting
Update `ctex` and `xeCJK` (and all the packages they rely on) in your TeX distritusion. And make sure you've installed
all the other packages used in `lshort-zh-cn-style.sty` and updated them to the newest version.
This document uses `fandol` font package. You may receive a warning like 'script-not-exist' made by `fontspec` package. Just leave it alone.
## Typesetting
### Manually typesetting
In 'src' directory, typeset the source code in the following order:
```
xelatex lshort-zh-cn
makeindex -s lshort-zh-cn.ist lshort-zh-cn
xelatex lshort-zh-cn
xelatex lshort-zh-cn
```
If typesetting succeeds and the target PDF document is made correctly, then move it to the root directory.
### Using scripts and Makefile
For GNU/Linux and OS/X users, we provide Makefile in the 'src' directory. Use GNU make tool in the following order:
```
make
make install
```
For Windows users, we also provide a batch file `make.bat` in the 'src' directory, which you can double-click to do the typesetting.
|