2

My problem is the following: I would like to have a numeric citation style; similar to the one in common papers, so in such a way that the citation is printed in form of a number as [1]. I use \usepackage[backend=biber, style=numeric, sortcites, sorting=nty, backref, natbib, hyperref]{biblatex} and \cite{} for citations, but still I get an Author-year-style citation... What could be wrong there?

\documentclass[11pt,a4paper]{report} 
\usepackage[backend=biber,style=numeric,sortcites,sorting=nty,backref,natbib,hyperref]{biblatex}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{lmodern}
\usepackage[ngerman,english]{babel}


\begin{document}
This theory fails to describe the phenomenon of superconductivity.\cite{PhysRev.108.1175}

\addcontentsline{toc}{chapter}{References}
\printbibliography[title=References]
\end{document}
gusbrs
  • 13,740

1 Answers1

0

Assuming that the bib file contains the available BibTeX, the MWE you provided does indeed result in a numeric citation ("[1]").

Please compare your own code with this example (rendered on Overleaf).

You may also want to ensure that you have removed any intermediate files and are compiling from scratch.

Coby Viner
  • 1,939