Biblatex 书目

Biblatex 书目

我正在使用 biblatex,目前我的参考书目也取代了出版物的标题。例如

[1] 英格丽德·德·吉尔。《伯爵、圣人、主教、吟游诗人——以及音乐。十二世纪的奥克尼伯爵领地。一项音乐学研究》。博士论文。乌普萨拉:乌普萨拉大学,1985 年。

我希望我的书目

  • 不显示标题;例如:[1] Ingrid de Geer, PhD thesis. Uppsala: Uppsala Universitet, 1985.

  • 与文本的其余部分相比,参考书目条目的字体较小。这是 MWE:

\documentclass[british]{report}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{babel}
\usepackage{csquotes}

\usepackage[backend=biber, style=numeric-comp, refsection=chapter]{biblatex}
\addbibresource{biblatex-examples.bib}


\begin{document}
\chapter{Lorem}
Lorem ipsum \autocite{sigfridsson} dolor \autocite{geer,worman}

\printbibliography[heading=subbibliography]

\chapter{Dolor}
Lorem ipsum \autocite{sigfridsson} dolor \autocite{knuth:ct:a,pines}
\printbibliography[heading=subbibliography]

\chapter{Sit}
Lorem ipsum \autocite{sigfridsson} dolor \autocite{geer,cicero,companion}
\printbibliography[heading=subbibliography]
\end{document}

答案1

正如上面评论所建议的,通过使用 style = phys 和 \AtNextBibliography{\footnotesize},我找到了我的问题的解决方案。

\documentclass[british]{report}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{babel}
\usepackage{csquotes}

\usepackage[backend=biber,style=numeric-comp,style=phys,%
articletitle=false,biblabel=brackets,%
chaptertitle=false,pageranges=false,%
refsection=chapter,
]{biblatex}
\addbibresource{biblatex-examples.bib}


\begin{document}
\chapter{Lorem}
Lorem ipsum \autocite{sigfridsson} dolor \autocite{geer,worman}

\AtNextBibliography{\footnotesize} 
\printbibliography[heading=subbibliography]

\chapter{Dolor}
Lorem ipsum \autocite{sigfridsson} dolor \autocite{knuth:ct:a,pines}
\AtNextBibliography{\footnotesize} 
\printbibliography[heading=subbibliography]

\chapter{Sit}
Lorem ipsum \autocite{sigfridsson} dolor \autocite{geer,cicero,companion}
\AtNextBibliography{\footnotesize} 
\printbibliography[heading=subbibliography]
\end{document}

相关内容