在回忆录课程中,参考书目的默认名称是(鼓声)“参考书目”。我想更改它。
根据 LaTeX Companion 中的建议,我尝试使用 \renewcommand\bibname{Newname} 进行测试。源文件排版正确,但命令不起作用:名称保持不变。
请帮忙。
提前致谢。
答案1
正如手册中讨论的那样,memoir
以下内容有效。
% bibnameprob.tex SE 631139
\documentclass{memoir}
\renewcommand{\bibname}{Short Entries}
\begin{document}
\cite{author-book}
\bibliographystyle{plain}
\bibliography{shortbib}
\end{document}
和...一起
%% LaTeX2e file `shortbib.bib'
%% a shortened version of jobname.bib which was
%% generated by the `filecontents' environment
%% from source `tocnocapsprob' on 2018/06/05.
%%
@book{author-book,
title = {Not a Best Seller},
author = {A. N. Author},
location = {The City},
publisher = {T H E Publisher},
year = {2005},
}
给予
您所做的事情我们只能猜测会导致您的问题。
根据 OP 的评论进行编辑,更改了问题
OP 没有提供 MWE,所以我不得不猜测。事实证明,OP 使用了bibliography
环境,该环境有自己的方法来更改参考书目的标题。
% bibnameprob2.tex SE 631139
\documentclass{memoir}
\begin{document}
\renewcommand{\bibname}{Short Entries} or in article class \refname{...}
\begin{thebibliography}{99}
\bibitem{x} book
\end{thebibliography}
\end{document}