blob: 7687e81a603fae05dadaacc0230d2c5e3f016c16 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
### Instructions for building PDF of GEMMA manual
The following commands will generate a PDF of the GEMMA manual from
the Latex:
```bash
cd doc
pdflatex manual
bibtex manual
pdflatex manual
pdflatex manual
```
Alternatively, you can use the Makefile:
```bash
cd doc
make
```
To run these commands, you will need a TeX distribution such as
[TexLive](https://www.tug.org/texlive) that includes commands
`pdflatex` and `bibtex`.
|