我正在使用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}