natlib 的使用改变了 apalike 引用的接口

natlib 的使用改变了 apalike 引用的接口

因此我应该使用和apalike引用。为了使用这两个命令,我需要使用包。但是,这会改变参考表的显示方式。它从\citep\citetnatbib[作者,年份]作者,(年份)

\documentclass{article}

%\usepackage{natbib}

\begin{document}
    
    text \cite{hawking}
    %text \citep{hawking}.
    
    \bibliographystyle{apalike}
    \bibliography{sample}
\end{document}  

要了解我的意思,只需取消注释这两行

这是sample.bib:

@book{hawking,
          title     = "A Brief History of Time: From the {B}ig {B}ang to Black Holes",
          author    = "Stephen Hawking and Stephen Spielberg",
          year      = 1988,
          publisher = "Bantam",
          address   = "London",
          edition=3
        }

相关内容