memoir/pages/latex/bibliography.md
2023-04-04 13:12:59 +02:00

34 lines
1.2 KiB
Markdown
Executable File

# Bibliography
```latex
\usepackage[backend=bibtex8, style=ieee]{biblatex}
\addbibresource{db.bib}
\cite{jedari2018survey}
\medskip
\printbibliography
```
```latex
@article{jedari2018survey,
title = {A survey on human-centric communications in non-cooperative wireless relay networks},
author = {Jedari, Behrouz and Xia, Feng and Ning, Zhaolong},
journal = {IEEE Communications Surveys \& Tutorials},
volume = {20},
number = {2},
pages = {914--944},
year = {2018},
publisher = {IEEE}
}
```
For the backend `biber` should be the one used if versions compatiblity is not an issue
- [Styles](https://www.overleaf.com/learn/latex/Biblatex_citation_styles#Citation_styles)
- [Intro](https://www.overleaf.com/learn/latex/Bibliography_management_with_biblatex#Introduction)
### RFC
- [https://datatracker.ietf.org/doc/html/draft-carpenter-rfc-citation-recs-01#section-5.2](https://datatracker.ietf.org/doc/html/draft-carpenter-rfc-citation-recs-01#section-5.2)
- [https://notesofaprogrammer.blogspot.com/2014/11/bibtex-entries-for-ietf-rfcs-and.html](https://notesofaprogrammer.blogspot.com/2014/11/bibtex-entries-for-ietf-rfcs-and.html)