如标题所示,我试图 bibtex
在同一文档中使用多种样式。
具体来说,我想区分我在online
参考文献中显示引文的方式,以及我显示book
和article
引文的方式。
我需要使用,footcite
以便我可以完整地写出我从中获取参考的网站,而我希望使用数字显示book
和的引文article
,并能够将它们放在方括号中。
考虑一下,目前,如果我\cite
在书籍和文章中使用,我会在文本中找到整个参考资料。
以下是当前正在发生的事情的 MWE。
\documentclass{book}
\usepackage[backend=biber,style=verbose-ibid,hyperref,backref]{biblatex}
\setlength{\parindent}{0pt}
\setlength{\parskip}{0pt}
\addbibresource{bibliography.bib}
\begin{document}
Cite book: \cite{ian:swe}\\
Cite article: \cite{paper:jira}\\
Cite website: \footcite{site:agile-manifesto}
\cleardoublepage
\chapter{Bibliografia}
% Print book bibliography
\printbibliography[heading=subbibliography,title={Riferimenti bibliografici},type=book]
% Print articles/paper
\printbibliography[heading=subbibliography,title={Pubblicazioni scientifiche},type=article]
% Print site bibliography
\printbibliography[heading=subbibliography,title={Siti web consultati},type=online]
\end{document}
bibliography.bib
@book{ian:swe,
title={Ingegneria del software},
author={Ian Sommerville},
isbn={9788891902245},
url={https://www.pearson.it/opera/pearson/0-6424-ingegneria_del_software},
year={2017},
publisher={Pearson}
}
@online{site:agile-manifesto,
title = {Manifesto Agile},
url = {https://agilemanifesto.org/iso/it/manifesto.html}
}
@article{paper:jira,
author = {Diamantopoulos, Themistoklis and Saoulidis, Nikolaos and Symeonidis, Andreas},
year = {2023},
month = {05},
title = {Automated issue assignment using topic modelling on Jira issue tracking data},
volume = {17},
journal = {IET Software},
doi = {10.1049/sfw2.12129}
}