答案1
您说使用该\renewcommand ...
方法对您不起作用。但是,您给出的命令 ( \renewcommand\refname{Reference}
) 不会删除标题,而是将标题设置为“参考”。
尝试\renewcommand{\refname}{}
,覆盖标题为空白({}
部分)
答案2
执行的方法取决于您是否使用 babel 包,以及您使用的 documentcalss。
如果你使用 babel,请使用:
\addto{\captionsLANGUAGE>}{\renewcommand{\refname}{{TITLE}}}
如果你是不是使用 babel 使用:
\renewcommand{\refname}{TITLE}
TITLE 中填写您想要的标题,LANGUAGE 中填写您正在使用的语言。您必须将此行放在语句之前\begin{document}
。
根据您使用的文档类,可能需要替换\refname
为\bibname
(例如,文章使用\refname
同时书用途\bibname
)。
如果前一个命令不起作用,请使用以下命令之一:
如果你使用 babel:
\addto{\captionsLANGUAGE}{\renewcommand{\bibname}{{TITLE}}}
如果你是不是使用 babel:
\renewcommand{\bibname}{TITLE}
下面是使用葡萄牙语的 babel 包的示例,文章作为文档类:
\documentclass{article}
\usepackage[portuguese]{babel}
\addto{\captionsportuguese}{\renewcommand{\refname}{{7 REFERÊNCIAS}}}
\begin{document}
\section*{7 REFERÊNCIAS}
\begin{thebibliography}{widest entry}
\bibitem[1]{item1} {Item 1 bib}
\end{thebibliography}
\end{document}
要获得您想要的结果,您有两个选择:删除部分行,或将参考书目标题设置为空白。在下面的代码中,我们执行后者:
\documentclass{article}
\usepackage[portuguese]{babel}
\addto{\captionsportuguese}{\renewcommand{\refname}{{}}} % Here is the change
\begin{document}
\section*{7 REFERÊNCIAS}
\begin{thebibliography}{widest entry}
\bibitem[1]{item1} {Item 1 bib}
\end{thebibliography}
\end{document}
希望这能回答你的问题。