如何在 LaTeX 文档中添加多种类型的参考文献

如何在 LaTeX 文档中添加多种类型的参考文献

我想获得以下参考:

... as further discussed by Author (year).

另外还有另一个参考:

... in the Middle East the average size of a family is X (author, year).

这可能吗?

答案1

你标记了这个问题natbib,你看过它的包装文档? 这參考表如果你是新手的话,我认为它可以用来作为快速/简短的介绍。

下面我展示了一个小例子,使用\citet作者(年份)和\citep(作者,年份):

\begin{filecontents}{\jobname.bib}
@ARTICLE{feyn54,
    author = {R. P. Feynman},
    journal = {Phys. Rev.},
    year = {1954},
    volume = {94},
    pages = {262}
}
\end{filecontents}

\documentclass{article}
\usepackage[round]{natbib}

\begin{document}
    \texttt{author (year)} using \verb!\citet!: \ldots As further discussed by~\citet{feyn54}

    \texttt{(author,year)} using \verb!\citep!: \ldots size of a family is X\citep{feyn54}

    \bibliographystyle{plainnat}
    \bibliography{\jobname}
\end{document}

小例如

相关内容