在 biblatex 的 refsection 环境中抑制参考书目标题

在 biblatex 的 refsection 环境中抑制参考书目标题

梅威瑟:

\documentclass{article}
\setlength{\parindent}{0em}
\usepackage[style = authoryear-comp]{biblatex}
\addbibresource{biblatex-examples.bib}

\begin{document}

You should read \emph{either}

\begin{refsection}
    \nocite{knuth:ct:a}
    \printbibliography
\end{refsection}

\emph{or}

\begin{refsection}
    \nocite{knuth:ct:b}
    \printbibliography
\end{refsection}

\end{document}

在此处输入图片描述

在这种情况下,我该如何隐藏参考书目标题References?或者,有什么更好的方法可以实现我在这里尝试实现的目标,即在文本中插入一个或多个参考书目项目?

答案1

要回答你的第一个问题,你可以使用

\printbibliography[heading=none]

更好的方法应该是使用

\fullcite{key}

所引用的参考文献也将出现在参考书目中。

相关内容