无论我做什么,在使用 LaTeX 中的回忆录类时,我都无法为其指定新名称\bibsection
。我想这样做是为了说服自己,我实际上正在改变的定义,\bibsection
因为我真正想要的是让我的参考文献成为一个部分而不是一个章节。
我尝试使用\usepackage[section]{tocbibind
},但结果却报错:“Option clash for package tocbibind”。我还尝试了各种更长的重新定义,但都\bibsection
无济于事。
我觉得我一定是忽略了一些东西,所以任何帮助都将不胜感激。
以下是 MWE:
\documentclass[article]{memoir}
\usepackage[backend=biber]{biblatex}
\renewcommand{\bibname}{FooBar}
%%% From p.306 of 'memman.pdf' (v3.7n) %%%
\renewcommand{\bibsection}{\section{\bibname}\prebibhook}
\addbibresource{bibsection.bib}
\begin{document}
The more things change, the more they stay the same.\cite{AnacondaInfo2019}
\printbibliography{}
\end{document}
答案1
您可以使用以下方式将参考书目向下移动一个层级heading=subbibliography
\documentclass[article]{memoir}
\usepackage[backend=biber]{biblatex}
\addbibresource{biblatex-examples.bib}
\begin{document}
The more things change, the more they stay the same.\cite{knuth:ct}
\printbibliography[heading=subbibliography]
\end{document}