将参考书目名称更改为补充参考文献

将参考书目名称更改为补充参考文献

我想将参考文献部分称为“补充参考文献”。

目前,参考文献上方有一行没有章节名称。

如果我按照\def\bibsection{\section*{Supplementary References}} 其他帖子中的建议使用,它将显示为补充参考资料,并在末尾显示章节编号。我想这是因为这一行\titleformat{\section}{\normalfont\Large\bfseries}{}{0em}{#1\ \thesection}

我怎样才能做到这一点而不显示数字,只显示补充参考资料?

\documentclass[11pt,prb,superscriptaddress,notitlepage,amsmath,amsfonts,amssymb,amsthm]{revtex4-1}
\def\bibsection{\section*{\refname}} 

%\def\bibsection{\section*{Supplementary References}} 
%\renewcommand\refname{Reference}

% encoding
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage[english]{babel}
\usepackage[explicit]{titlesec}

\titleformat{\section}{\normalfont\Large\bfseries}{}{0em}{#1\ \thesection}

%graphics
\usepackage{graphicx}
\linespread{1.5}
\setlength{\parskip}{0.1cm plus4mm minus3mm}
\usepackage[top=1in, bottom=1in, left=0.75in, right=0.75in]{geometry}
\usepackage[usenames,dvipsnames,svgnames,table]{xcolor}
\usepackage{xcolor}

%figures
\usepackage{float}
\restylefloat{figure}
\usepackage{placeins}

% Math packages
\usepackage{mathtools}
\usepackage{bm}
\usepackage[normalem]{ulem}

\usepackage[hyperindex,colorlinks,hyperfootnotes = false,citecolor = blue,]{hyperref}

\usepackage{natbib}
\usepackage{setspace}

\begin{document}

\nocite{*}

\maketitle

\renewcommand\thesection{\arabic{section}}
\renewcommand{\figurename}{Supplementary Figure}
\renewcommand\theequation{S\arabic{equation}}

\section{Supplementary Note}

\begin{thebibliography}{10}

\bibitem{becker}
N.~B. Becker, A.~Mugler, and P.~R. ten Wolde.
\newblock Optimal prediction by cellular signaling networks.
\newblock {\em Phys. Rev. Lett.}, 115:258103, 2015.

\end{thebibliography}


\end{document}

相关内容