Is there any way to short it to: <Smith and Machina, 2008>
Thank you.

Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
Code: Select all
@ARTICLE{GOOD,
author = {{E}. {H}. {A}delson and {B}ergen, {J}ames {R}. },
title = {Some things we wrote},
year = {2008},
journal = {J. Irrep. Res.},
volume = {111},
page = {1-2},
}
@ARTICLE{BAD,
author = {{E}dward {H}. {A}delson and {J}ames {R}. {B}ergen},
title = {Some things we wrote},
year = {2008},
journal = {J. Irrep. Res.},
volume = {111},
page = {1-2},
}
Code: Select all
\citep{GOOD}
\par
\citep{BAD}.
Code: Select all
[Adelson and Bergen, 2008]
[Edward H. Adelson and James R. Bergen, 2008].
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis