Gostaria que o título das Referências estivesse em negrito. Meu MWE está abaixo. Se você comentar \usepackage{natbib}
(e a linha seguinte), o problema não ocorrerá. Supondo que natbib
esteja causando isso, pensei em adicionar
\renewcommand{\bibsection}{\textbf{References}}
deve corrigir isso, mas nenhuma alteração é feita.
\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}
isso imprime:
Editar/solução:Encontrei a solução no artigo vinculado no comentário, porém, não é uma duplicata exata, pois não estou usando a book
classe, então a solução é um pouco diferente (o artigo vinculado usa \bibname
enquanto eu deveria usar \refname
. De qualquer forma, aqui está a solução para o meu problema:
\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}