Latex References

Adding References

\usepackage[ngerman]{babel} % german
 
\usepackage[
    backend=biber,
    doi=false,
    isbn=false,
    maxbibnames=3, minbibnames=3,
    style=ieee
]{biblatex}
 
%% show references
\printbibliography

Don’t show unused references

% nocite print the whole bibliography. Remove nocite to
% print only the cited references.
\nocite{*}
\printbibliography

Hide certain bib fields

Skip specific field in .bib file (for example the note field):

\AtEveryBibitem{%
  \clearfield{note}%
}

Sources: