biblatex usage

biblatex usage

Example file

1
2
3
4
5
6
7
8
\documentclass{article}
\usepackage[backend=biber,style=numeric]{biblatex}
\bibliography{biblatex_usage}

\begin{document}
Some text \autocite{ref1}.
\printbibliography
\end{document}

See gpt.tex for the full example.

Example compile command

1
2
3
4
pdflatex gpt.tex
biber gpt
pdflatex gpt.tex
pdflatex gpt.tex

Recipe has been made in settings of VS Code.

Example bibliography file

1
2
3
4
5
6
7
8
9
10
11
@article{ref1,
author = {Author, A.},
year = {2001},
title = {Title},
journal = {Journal},
volume = {1},
number = {1},
pages = {1--2},
doi = {10.1000/182},
url = {https://www.example.com/},
}