참고문헌 제목을 굵게 표시하고 싶습니다. 내 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}