[Tex/LaTex] Problem with Bibliography Style (ACM)

acmbibtexpunctuation

I am a newbie in Latex and forgive me if the question seems dum.
I have the following entry in my Bibliography.

@misc{fuller2011,
 author               = {V. Fuller and D. Farinacci and D. Meyer and D. Lewis},
 month                = {June},
 organization         = {Internet Engineering Task Force},
 publisher            = {IETF},
 series               = {Request for Comments},
 title                = {LISP Alternative Topology (LISP+ALT)},
 year                 = {2011},
 howpublished         = {http://tools.ietf.org/html/draft-ietf-lisp-alt-07},
 }

When I use \bibliographystyle{plain}, I see the following in the subsequent .pdf:

    V. Fuller, D. Farinacci, D. Meyer, and D. Lewis. Lisp alternative topol-
ogy (lisp+alt). http://tools.ietf.org/html/draft-ietf-lisp-alt-07, June
2011.

Which is OK.

But, when I use \bibliographystyle{acm}, (I am forced to use "acm") I see the following in the subsequent .pdf:

Fuller, V., Farinacci, D., Meyer, D., and Lewis, D. Lisp
alternative topology (lisp+alt), http://tools.ietf.org/html/draft-ietf-lisp-alt-07, June 2011.

You see that commas are put within one name (i.e. names are not displayed correctly). What am I doing wrong? How can I fix this? I am using MikTEX 2.8 with TexNicCenter in Windows XP.

Best Answer

Contrary to the plain bibliography style, the acm style uses a lastname/firstname scheme to display author names, and it is common for this scheme to put a comma between the different name parts. Have a look at the ACM LaTeX style guide -- commas between last name and first name are the way it's meant to be.