\begin{thebibliography} 环境中的标题“参考文献”问题

\begin{thebibliography} 环境中的标题“参考文献”问题

我的问题是我想删除 thebibliography 环境的标题“references”。我想建立一个\section{7 REFERENCES},然后用它\vspace{-xxcm}来移动我写的 \bibitem。

我正在使用 article,我不想使用 biblatex 或 bibtex。此外,我不是高级用户,所以我很欣赏简单的解决方法(当然,如果存在的话)。在此处输入图片描述

观察:像这样的命令\renewcommand\refname{Reference}对我来说根本不起作用。

答案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}

示例 1

要获得您想要的结果,您有两个选择:删除部分行,或将参考书目标题设置为空白。在下面的代码中,我们执行后者:

\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}

示例 2

希望这能回答你的问题。

相关内容