Home > database >  biblatex for the unsrt style with super-compact-numeric in square brackets in latex or rmarkdown
biblatex for the unsrt style with super-compact-numeric in square brackets in latex or rmarkdown

Time:01-13

My problem arises from enter image description here

CodePudding user response:

You could use the chem-angew style:

\documentclass{article}

\usepackage[hidelinks]{hyperref}
\usepackage[style=chem-angew,autocite=superscript]{biblatex}
\addbibresource{ref.bib}

\newcommand{\citep}[1]{\autocite{#1}}


\begin{document}

statistics \citep{anderson2003introduction,efron2004least,hastie2009elements}

\printbibliography[heading=bibliography,title=References]
\nocite{*}

\end{document} 

enter image description here

  • Related