[Tex/LaTex] Generate uniform references

bibliographiesbibtexciting

To generate references, I usually find the needed bibtex formats for references in Google Scholar, which may gives the following references:

B.K. Chun, D.S. Ryu, W.I. Hwang, and H.G. Cho. 2006. An automated procedure for word balloon placement in cinema comics.
Advances in Visual Computing (2006), 576–585.

Anastasios Dimou, Olivia Nemethova, and Markus Rupp. 2005. Scene change detection for H. 264 using dynamic threshold
techniques. In Proc. of the 5th EURASIP Conference on Speech and Image Processing, Multimedia Communications and
Service, Smolenice, Slovac Republic.

As you can see from the above example, the two references are not consistent, for example, their names format are different. How could I generate uniform references like the following:

Chun, B.K., Ryu, D.S., Hwang, W.I., and Cho, H.G. 2006. An automated procedure for word balloon placement in cinema comics. Advances in Visual Computing 576–585.

Dimou, A., Nemethova, O., and Rupp, M. 2005. Scene change detection for H. 264 using dynamic threshold techniques. In Proc. of the 5th EURASIP Conference on Speech and Image Processing, Multimedia Communications and Service, Smolenice, Slovac Republic.

P.S. It seems it's not easy to find all consistent bibtex formats for them in Google Scholar especially when the number of references are large.

Any help will be much appreciated.

Best Answer

I finally found the way to make it consistent without manually editing.

Because I am writing a ACM journal paper of the Large Format Single Column, it actually offers a bibtex style called acmlarge that I can use to achieve this automatically. So by changing

\bibliographystyle{ACM-Reference-Format-Journals}

to

\bibliographystyle{acmlarge}

I am able to generate the following consistent references:

enter image description here


Note: The above method may be only applicable for writing specific ACM journal papers. We may still need manually editing, as @cfr and @vonbrand commented, if the default template doesn't offer such options to us.

Related Question