我怎样才能获得这种书目风格https://tex.stackexchange.com/a/110315/235725左侧包含一个数字,[1]
并且文档中的引用部分也包含相同的数字?
来自 Overleaf 链接https://www.overleaf.com/learn/latex/Biblatex_bibliography_styles我发现最相似的是chem-angew
和“更多风格可以在CTAN biblatex 网站“链接已损坏。
\documentclass{article}
\usepackage[backend=biber,style=chem-angew,sorting=nty]{biblatex}
\addbibresource{biblatex-examples.bib} \begin{document} Text
\cite{companion}
\printbibliography \end{document}
有人可以帮忙吗?
先感谢您
答案1
风格来自Biblatex 样式简称只是biblatex
标准样式authortitle
,但进行了两处小调整:姓名首字母带有giveninits
(这是firstinits
以前的说法)以及姓名顺序带有\DeclareNameAlias{sortname}{given-family}
(\DeclareNameAlias{sortname}{first-last}
在旧biblatex
版本中)。
如果切换到标准numeric
样式,姓名格式就已经符合要求了,所以我们只需要让名字以 为首字母缩写即可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}
作为伯纳德指出在评论中\DeclareFieldFormat{date}{#1}
,如果您想要保留chem-angew
但又想去掉粗体年份,则可以使用。
\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}