Legrand 橙皮书书目分类

Legrand 橙皮书书目分类

我正在使用 Legrand Orange Book 模板进行项目,但在参考书目方面遇到了问题。

我已将参考书目定义更改为:

%------------------------------------------------------------------------
%   BIBLIOGRAPHY AND INDEX
%------------------------------------------------------------------------

\usepackage[style=numeric,citestyle=numeric,sorting=nyt,sortcites=true,autopunct=true,babel=hyphen,hyperref=true,abbreviate=false,backref=true,backend=biber]{biblatex}
\addbibresource{bibliography.bib} % BibTeX bibliography file
\defbibheading{bibempty}{}

这给了我一个基本的编号参考书目,如[1][2],这很好。

我的问题在于分类。参考书目中只出现书籍和文章,网页链接没有出现,尽管编号参考资料出现在整个报告中。

.bib 文件中的条目可能如下所示:

@misc{stat-downloads,
title = {{Number of free and paid mobile app store downloads worldwide from 2011 to 2017 (in billions)}},
url = {https://www.statista.com/statistics/271644/worldwide-free-and-paid-mobile-app-store-downloads/{\%}0A},
urldate = {2016-12-10}
}

.bib文件由 Mendeley 生成。

我其实并不关心类别,我更愿意有一个长长的编号列表。我该如何实现这一点?

答案1

在版本中罗格朗橙皮书模板来自 LaTeTemplates.com我们发现main.tex

\chapter*{Bibliography}
\addcontentsline{toc}{chapter}{\textcolor{ocre}{Bibliography}}
\section*{Books}
\addcontentsline{toc}{section}{Books}
\printbibliography[heading=bibempty,type=book]
\section*{Articles}
\addcontentsline{toc}{section}{Articles}
\printbibliography[heading=bibempty,type=article]

如果你只是用它代替

\printbibliography

一切就绪。然后您应该只会获得一个(合并的)参考书目。

相关内容