0

How can I get this Bibliography style https://tex.stackexchange.com/a/110315/235725 with a number included on the left as [1] and the same for the cite part on the document?

From the Overleaf link https://www.overleaf.com/learn/latex/Biblatex_bibliography_styles the most similar that I found was the chem-angew and the "More styles can be found in the CTAN biblatex site" link is broken.

\documentclass{article}

\usepackage[backend=biber,style=chem-angew,sorting=nty]{biblatex} \addbibresource{biblatex-examples.bib} \begin{document} Text \cite{companion} \printbibliography \end{document}

enter image description here

Could someone please help?

Thank you in advance

1 Answers1

1

The style from Biblatex style short name is just the biblatex standard style authortitle with two small adjustments: Name initials with giveninits (which was called firstinits a while ago) and different name order with \DeclareNameAlias{sortname}{given-family} (\DeclareNameAlias{sortname}{first-last} in old biblatex versions).

If you switch to the standard numeric style, the name format will already be as desired, so we only need to make the given names to come out as initials with giveninits=true,.

\documentclass[british]{article}
\usepackage[T1]{fontenc}
\usepackage{babel}
\usepackage{csquotes}

\usepackage[backend=biber, style=numeric, giveninits]{biblatex}

\addbibresource{biblatex-examples.bib}

\begin{document} Lorem \autocite{sigfridsson,worman,nussbaum}

\printbibliography \end{document}

E. Sigfridsson and U. Ryde. ‘Comparison of methods for deriving atomic charges from the electrostatic potential and moments’. In: Journal of Computational Chemistry 19.4 (1998), pp. 377–395. doi: 10.1002/(SICI)1096-987X(199803)19:4<377::AID-JCC1>3.0.CO;2-P.


As Bernard points out in the comments, you can use \DeclareFieldFormat{date}{#1} if you want to stick with chem-angew but want to get rid of the bold years.

\documentclass[british]{article}
\usepackage[T1]{fontenc}
\usepackage{babel}
\usepackage{csquotes}

\usepackage[backend=biber, style=chem-angew]{biblatex}

\DeclareFieldFormat{date}{#1}

\addbibresource{biblatex-examples.bib}

\begin{document} Lorem \autocite{sigfridsson,worman,nussbaum}

\printbibliography \end{document}

E. Sigfridsson, U. Ryde, Journal of Computational Chemistry 1998, 19, 377–395.

moewe
  • 175,683