Use package \usepackage{biblatex}
(biblatex manual) and biber
(A backend bibliography processor for biblatex) for compilation.
I used example bib entrys. Example list. So everyone can test it.
Edit:
If you want round braces around you can use \citep
, when adding the option natbib=true
.
\usepackage[backend=biber,style=numeric,citestyle=authoryear,natbib=true]{biblatex}
.
Result:

MWE:
\documentclass{article}
\usepackage[backend=biber,style=numeric,citestyle=authoryear,natbib=true]{biblatex}
\addbibresource{biblatex-examples.bib}
\begin{document}
Here in-text \textbf{citestyle} \textit{authoryear} with cite \cite{bertram,matuz:doody,kastenholz} and with citep \citep{gillies}
And in the \textbf{bibstyle} is \textit{numeric}.
\printbibliography
\end{document}
... you can also add for example: maxcitenames=2,ibidtracker=false,isbn=false,dashed=false,maxbibnames=50,firstinits=true,uniquelist=false
,... to customize the bib style. See: enter link description here.
Best Answer
I assume you mean citation call-outs being formed as superscript-level numbers.
One way to get such citation call-outs is to load the
natbib
package with the optionsuper
. With this option loaded,\cite{...}
commands will generate superscript numbers for citation call-outs. (Of course, you will also need to select a bibliography style to determine how entries are formatted in the bibliography section.)