27 lines
860 B
Markdown
27 lines
860 B
Markdown
## Use document in Kile
|
|
The option `-shell-escape` has to be appended to the PDFLatex command line. As of writing this note, the live preview does not work even after adding the option in the `kilerc` file.
|
|
|
|
~~Update:
|
|
Don't use the package `minted` that comes with the template. Instead use the one from the package manager. Then also the LivePreview works together with the `-shell-escape` command. The option `[cache=false]` is not required.~~
|
|
|
|
### Nomenclature
|
|
https://tex.stackexchange.com/a/96596
|
|
|
|
```
|
|
Using kile, I have configured the QuikBuild command as follows:
|
|
|
|
go to: Settings -> Configure Kile... -> Build
|
|
|
|
create a new tool:
|
|
|
|
Name: "MakeIndexNomencl"
|
|
Command: makeindex
|
|
Options: '%S.nlo' -s nomencl.ist -o '%S.nls'
|
|
|
|
add MakeIndexNomencl and a second PDFLaTeX to the QuickBuild tool:
|
|
|
|
PDFLaTeX
|
|
MakeIndexNomencl
|
|
PDFLaTeX
|
|
```
|