I'd like BibTeX to print authors' names in the following fashion:
S. Bouabdallah, A. Noth, R. Siegwart
For that to happen, according to what I've read already, the .bib code should look like below:
@inproceedings{BouabdallahPID,
author = {Bouabdallah, S. and Noth, A. and Siegwart, R.},
keywords = {quad},
location = {Sendai, Japan},
pages = {2451--2456},
title = {{PID vs LQ control techniques applied to an indoor micro quadrotor}},
year = {2004}
}
Instead, BibTeX keeps including the "and" word before last author's name, i.e.:
S. Bouabdallah, A. Noth, and R. Siegwart
How do I get rid of the "and" word?
I've tried alpha, plain, ams and acm styles so far, which made no difference, hence assumed style doesn't change this behavior, but may be wrong on this one. I'd like to stay with plain, though.