如何重命名 CurVe 文档类中的“出版物列表”部分?

如何重命名 CurVe 文档类中的“出版物列表”部分?

我正在使用 CurVe 文档类。这是一个最小的工作示例:

fav_book.tex:

\begin{rubric}{My Favourite Book}

 This is my favourite book~\cite{fav}
\end{rubric}

书目.tex:

\begin{thebibliography}{}

 \bibitem{fav} Thor, A.U., 2017. \textit{Best book ever}. 1st ed. London: Best Publishers.

\end{thebibliography}

简历.tex:

\NeedsTeXFormat{LaTeX2e}
\documentclass[a4paper,12pt]{curve}
\begin{document}
\makerubric{fav_book}
\makerubric{bibliography}

\end{document}

结果如下:

mwe_ListofPubs

我如何将“出版物列表”重命名为“参考文献”(因为就我而言,我不希望它是我自己的出版物)。

我可能正在寻找'命名宏' 取决于 CurVe 的工作方式。

答案1

我在 CurVe 类文档中找到了答案:

\listpubname宏需要一个强制参数,用于重新定义书目部分的标题(当您使用提供的书目支持时)。默认情况下,英文使用“出版物列表”。请注意,为了与 multibbl 和 multibib 包兼容,CurVe 尊重\bibname\refname宏的存在,以便\listpubname决定将哪个标题赋予书目标题。

相关内容