
我正在使用 biblatex 將出版物包含在我的簡歷中。我正在使用以下程式碼
\usepackage[english]{babel}
\usepackage{csquotes}
\usepackage[bibstyle=publist,boldyear=true,plauthorhandling=highlight,sorting=ymdnt]{biblatex}
\addbibresource{reference.bib}
\begin{document}
\begin{Section}{Publications}
\nocite{aip1,aip2,cmsim,chaos12,ncose1,ncose2,ncose3,pedes18,iccare19,ijrte19}
\printbibliography[type=article,title={\large{Journal Papers}}]
\printbibliography[type=inproceedings,title={\large{Conference Papers}}]
\end{Section}
\end{document}
我面臨的問題是出版物的連續編號。
我希望會議編號從1開始。
答案1
您需要新增resetnumbers
到您的\printbibliography
s 以重新開始編號。如果使用,resetnumbers
也必須進行defernumbers=true,
全域設定。
\documentclass{article}
\usepackage[english]{babel}
\usepackage{csquotes}
\usepackage[bibstyle=publist,
boldyear=true, plauthorhandling=highlight,
defernumbers=true]{biblatex}
\addbibresource{biblatex-examples.bib}
\begin{document}
\nocite{sigfridsson,aksin,yoon,moraux,salam}
\printbibliography[resetnumbers, type=article, title={Journal Papers}]
\printbibliography[resetnumbers, type=inproceedings, title={Conference Papers}]
\end{document}
請注意,如果新增或刪除該選項,您可能必須刪除臨時檔案(.aux
、.bbl
、 ...)。.bcf
defernumbers