我希望参考文献标题加粗。我的 MWE 在下面。如果您注释掉\usepackage{natbib}
(和以下行),则不会发生问题。假设 natbib
是导致这种情况的原因,我认为添加
\renewcommand{\bibsection}{\textbf{References}}
应该纠正这个问题,但没有做出任何改变。
\documentclass[jou]{apa6}
\usepackage{natbib} % to change citation/references/bibliography style
\renewcommand{\bibsection}{\textbf{References}}
\begin{document}
See \cite{smith} and \cite{simpson}
\bibliographystyle{apalike}
\begin{thebibliography}{}
\bibitem[Smith, 2002]{smith}
Smith, F. (2002).
\newblock {\em Title}.
\newblock Publisher Name.
\bibitem[Simpson, 2002]{simpson}
Simspon, P. (2002).
\newblock {\em Title}.
\newblock Publisher Name.
\end{thebibliography}
\end{document}
打印结果为:
编辑/解决方案:我从评论中链接的文章中找到了解决方案,但是,由于我没有使用该类,因此它不是完全重复的book
,因此解决方案略有不同(链接的文章使用\bibname
而我应该使用\refname
。无论如何,这是我的问题的解决方案:
\documentclass[jou]{apa6}
\usepackage{natbib} % to change citation/references/bibliography style
\AtBeginDocument{\renewcommand{\bibsection}{\section\refname}}
\begin{document}
See \cite{smith} and \cite{simpson}
\bibliographystyle{apalike}
\begin{thebibliography}{}
\bibitem[Smith, 2002]{smith}
Smith, F. (2002).
\newblock {\em Title}.
\newblock Publisher Name.
\bibitem[Simpson, 2002]{simpson}
Simspon, P. (2002).
\newblock {\em Title}.
\newblock Publisher Name.
\end{thebibliography}
\end{document}