[Tex/LaTex] Citing the name of the collaboration/first author only with bibtex

bibtexciting

I want to cite a collaboration using the natbib package.

bibliography.bib is something like:

@article{entry_name,
    author={{CollaborationName} and {Author1} and {Author2}},
    year=2013
}

\cite{entry_name} gives CollaborationName et al. (2013).

How can I get CollaborationName (2013)?

Best Answer

The string "et al." is hard coded and is done by bibtex related to your bst-file. You can't change it such simple. As mentioned if you use biblatex it is possible.

\documentclass[a4paper,12pt]{article}
\usepackage{filecontents}
\begin{filecontents}{\jobname.bib}
@article{test,
 title={Test title},
 author={{CollaborationName} and {Author1} and {Author2}},
 journal="journal",
 year=2013
}
\end{filecontents}
\usepackage[style=authoryear,maxbibnames=6,maxcitenames=1]{biblatex}
\addbibresource{\jobname.bib}

\DeclareCiteCommand{\citefirst}
  {\usebibmacro{prenote}}
  {\renewbibmacro*{name:andothers}{}%
   \usebibmacro{citeindex}%
   \usebibmacro{cite}}
  {\multicitedelim}
  {\usebibmacro{postnote}}

\begin{document}
\citefirst{test}



\printbibliography

\end{document}

enter image description here

Related Question