我刚刚接到任务,要根据一篇论文撰写一篇关于哥白尼的论文。我在 Overleaf 中使用这个模板:https://de.overleaf.com/latex/templates/copernicus-publications-manuscript-preparation-template-for-latex-submissions/xmgtnrsvtptt 它使用 bib 样式 \bibliographystyle{copernicus}。
现在我在 Bibl.bib 文件中添加如下引文:
@article{barcelo2018chi,
title={Chi-square analysis},
author={Barcel{\'o}, Juan A},
journal={The encyclopedia of archaeological sciences},
pages={1--5},
year={2018},
publisher={Wiley Online Library}
}
我现在将其插入到文本中,因此 \cite{barcelo2018chi}
输出如下:
我怎样才能让它看起来像这样:(巴塞罗,2018)
答案1
您的模板已经告诉您如何生成不同类型的内联引用:
%% LITERATURE CITATIONS
%%
%% command & example result
%% \citet{jones90}| & Jones et al. (1990)
%% \citep{jones90}| & (Jones et al., 1990)
%% \citep{jones90,jones93}| & (Jones et al., 1990, 1993)
%% \citep[p.~32]{jones90}| & (Jones et al., 1990, p.~32)
%% \citep[e.g.,][]{jones90}| & (e.g., Jones et al., 1990)
%% \citep[e.g.,][p.~32]{jones90}| & (e.g., Jones et al., 1990, p.~32)
%% \citeauthor{jones90}| & Jones et al.
%% \citeyear{jones90}| & 1990
答案2
尝试使用 apalike 或 natbib 样式。
apalike 包看起来像您所要求的,但是使用方括号 - 使用 with \bibliographystyle{apalike}
。或者在这里查看不同的 natbib 样式:
https://www.overleaf.com/learn/latex/Natbib_bibliography_styles