最大作者数

最大作者数
  1. 我想写 Boehler et.al. (2003),但我得到的是所有作者的名字。我怎样才能修复最大作者数量
  2. 我怎样才能得到 9 月 30 日?10 月 4 日。目前,我得到 9 月 30 日。10 月 4 日
\documentclass{article}
\usepackage[natbibapa]{apacite}
\begin{document}
Some text \citet{BoehlerW2003}.
\bibliographystyle{apacite}
\bibliography{Mybiblo}% Change this to use a different bibliography database file.
\end{document}

我的biblo

@CONFERENCE{BoehlerW2003,
  author = {W. Boehler and  Vicent M. Bordas and  A. Marbs},
  title = {Investigating laser scanner accuracy},
  booktitle = {CIPA Symposium at Antalya, Turkey, 30 Sept. – 4 Oct},
  year = {2003},
  owner = {S.S},
  timestamp = {2013.06.02}
}

答案1

你可以使用natbib包(可用这里),进行设置 \bibliographystyle{apalike}

如果你想改变出现的作者姓名数量(我认为默认是两个),你可以通过查看natbib 包装文档

一些额外的参考:

BibTeX:如何自动将长作者列表缩短为“xxx 等”?

答案2

如果您想要 Boehler 等人(2003),请使用以下命令:

\citeauthor{BoehlerW2003}\ \citeyearpar{BoehlerW2003}

有关更多命令,请查看LaTeX 维基百科

相关内容