Go back to using bibtex.

This commit is contained in:
Relintai 2023-12-03 16:29:24 +01:00
parent c3fcfcebe5
commit defd1a1ef8
3 changed files with 9 additions and 3 deletions

View File

@ -19,14 +19,17 @@ The template supports producing both Hungarian and English theses, which can be
# (PDF file contains incorrect references yet)
pdflatex elteikthesis_en.tex
# Generate bibliography
biber elteikthesis_en
bibtex elteikthesis_en
# Generate nomenclature (optional)
makeindex -s nomencl.ist -t elteikthesis_en.nlg \
-o elteikthesis_en.nls elteikthesis_en.nlo
# Generate final PDF file
pdflatex elteikthesis_en.tex
pdflatex elteikthesis_en.tex
```
**Note:** in case the bibliography changes, executing `bibtex`, then `pdflatex` _twice_ is required to generate to correct references in the PDF output.
Compilation might be carried out through a preferred IDE (e.g. [TexStudio](https://www.texstudio.org/)), given the same commands should be executed.
## Syntax highlighting of code blocks

View File

@ -14,14 +14,17 @@ A sablon magyar és angol nyelvű dokumentumok elkészítését is támogatja (l
# (PDF fájl még hibás hivatkozásokat fog tartalmazni)
pdflatex elteikthesis_hu.tex
# Irodalomjegyzék generálása
biber elteikthesis_hu
bibtex elteikthesis_hu
# Jelölésjegyzék generálása (ha szükséges)
makeindex -s nomencl.ist -t elteikthesis_hu.nlg \
-o elteikthesis_hu.nls elteikthesis_hu.nlo
# Végleges PDF fájl generálása
pdflatex elteikthesis_hu.tex
pdflatex elteikthesis_hu.tex
```
**Megjegyzés:** az irodalomjegyzék változása esetén a `bibtex`, majd a `pdflatex` _kétszeri_ futtatása szükséges a helyes hivatkozások előállításához.
A fordításhoz tetszőleges fejlesztő környezet is használható (pl. [TexStudio](https://www.texstudio.org/)), ugyanezen utasítások kiadásával.
## Kódblokkok szintaxis kiemelése

View File

@ -394,7 +394,7 @@
% Bibliography
\RequirePackage[autostyle=true]{csquotes}
\RequirePackage[
backend=biber,
backend=bibtex,
style=numeric, % style of bibliography
sorting=none % sorting of references
]{biblatex}