你好,我使用的是“apalike”样式的 natbib。当我在文档末尾生成参考书目时,它是标题“参考”。有没有办法让标题的编号与我的其他部分一致?
\documentclass[a4paper, 11pt]{article}
\usepackage{natbib}
\begin{document}
\bibliographystyle{apalike}
\section{Overview} displayed as section number 1
\section{Scientific Interest} displayed as section number 2
\section{Research Question}
\section{Theoretical Background / Literature Review}
\section{Hypotheses}
\section{Methods}
\bibliography{jab} ---> HERE I WANT IT TO BE DISPLAYED AS "8 References"
\end{document}
答案1
natbib
定义\bibsection
为课堂上的星号部分article
。您可以通过以下方式重新定义它:
\renewcommand\bibsection{\section{\refname}}
在你的序言中。
\documentclass[a4paper, 11pt]{article}
\usepackage{natbib}
\renewcommand\bibsection{\section{\refname}}
\begin{document}
\bibliographystyle{apalike}
\section{Overview} displayed as section number 1
\section{Scientific Interest} displayed as section number 2
\section{Research Question}
\section{Theoretical Background / Literature Review}
\section{Hypotheses}
\section{Methods}
\bibliography{jab} %%---> HERE I WANT IT TO BE DISPLAYED AS "8 References"
\end{document}