![输出中将 author [1999] 替换为 author (1999) ?](https://linux22.com/image/318322/%E8%BE%93%E5%87%BA%E4%B8%AD%E5%B0%86%20author%20%5B1999%5D%20%E6%9B%BF%E6%8D%A2%E4%B8%BA%20author%20(1999)%20%EF%BC%9F.png)
我正在使用bibliographystyle{apalike}
,但是,我希望它输出作者(年份)而不是作者 [年份],因为它目前就是这样,而我提交的论文需要()。
我该如何改变这种行为?
答案1
加载natbib
:
\documentclass{article}
\usepackage{natbib}
\usepackage{hyperref}
\usepackage{filecontents}
\begin{filecontents*}{xyyzzz.bib}
@article{oskal,
author = {{\"O}zkal, Erhan},
title = {The title},
journal = {The Journal},
year = {2015},
pages = {3027-3036}
}
\end{filecontents*}
\begin{document}
\cite{oskal}
\bibliographystyle{apalike}
\bibliography{xyyzzz}
\end{document}