Me gustaría que el título de Referencias estuviera en negrita. Mi MWE está debajo. Si comenta la \usepackage{natbib}
línea (y la siguiente), el problema no ocurre. Suponiendo que natbib
esto esté causando esto, pensé agregando
\renewcommand{\bibsection}{\textbf{References}}
debería corregir esto, pero no se realiza ningún cambio.
\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}
esto imprime:
Editar/solución:Encontré la solución en el artículo vinculado en el comentario. Sin embargo, no es un duplicado exacto ya que no estoy usando la book
clase, por lo que la solución es ligeramente diferente (el artículo vinculado usa \bibname
while debería usar \refname
. De todos modos, aquí está la solución para mi 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}