[Tex/LaTex] Some author name not displayed fully

bibliographiesbibtex

I am completely new to LaTex… I have created a bibtex file, but unfortunately , among tha author names, some of them are being displayed fully and the rest are being abbreviated , like the name "Tom van der Poll" is getting displayed as "T. v. d. P". It is happening for some names while not for other names… Please help

The paper is "Host–Pathogen Interaction in Invasive Salmonellosis"
by "Hanna k. de Jong, Chris M. Parry, Tom van der Poll, W. joost Wiersinga"

@article{ 1,
        AUTHOR={Anu Raghunathan and Jennifer Reed},
        TITLE={Constraint-based analysis of metabolic capacity of Salmonella typhimurium during host-pathogen interaction},
        JOURNAL={BMC Systems Biology},
        YEAR={2009},
},

@article{ 2,
        AUTHOR={Hanna k. de Jong and Chris M. Parry and Tom van der Poll and W. Joost Wiersinga},
        TITLE={Host–Pathogen Interaction in Invasive Salmonellosis},
        JOURNAL={PLOS Pathogens},
        YEAR={2012},
 },

@article{ 3,
        AUTHOR={Vinod Scaria and Manoj Hariharan and Beena Pillai and Souvik Maiti and Samir k Brahmachari},
        TITLE={Host–virus genome interactions: macro roles for microRNAs},
        JOURNAL={Cellular Microbiology},
        YEAR={2007},
 },

@article{ 4 ,
        AUTHOR={Zhumur Ghosh and Bibekanand Mallick and Jayprokas Chakrabarti },
        TITLE={Cellular versus viral microRNAs in host–virus interaction},
        JOURNAL={Nucleic Acids Research},
        YEAR={2009},
},

@article{ 5 ,
        AUTHOR={Vinod Scaria and Manoj Hariharan and Samir K Brahmachari},
        TITLE={Host-virus interaction: a new role for microRNAs},
        JOURNAL={BioMedCentral},
        YEAR={2006},
 },

@article{ 6 ,
        AUTHOR={Renate Konig and Yingyao Zhou},
        TITLE={Global Analysis of Host-Pathogen Interactions that Regulate Early-Stage HIV-1 Replication},
        JOURNAL={Cell},
        YEAR={2008},
},

@article{ 7,
        AUTHOR={Man Lung Yeung and Laurent Houzet and Venkat S.R.K. Yedavalli and and Kuan-Teh Jeang},
        TITLE={A Genome-wide Short Hairpin RNA Screening of Jurkat T-cells for Human Proteins Contributing to Productive HIV-1 Replication},
       JOURNAL={J Biol Chem},
        YEAR={2009},
},

@article{ 8 ,
        AUTHOR={Brass ALand Dykxhoorn DM},
        TITLE={Identification of host proteins required for HIV infection through a functional genomic screen},
        JOURNAL={Pubmed},
        YEAR={2008},
},

 @article{ 9,
        AUTHOR={Christopher M. Sassetti and Eric J. Rubin},
        TITLE={Genetic requirements for mycobacterial survival during infection},
       JOURNAL={PNAS},
        YEAR={2003},
},

@article{ 10,
        AUTHOR={Nadav Rappoport and Michal Linial},
        TITLE={Viral Proteins Acquired from a Host Converge to Simplified Domain Architectures},
        JOURNAL={PLoS Computattional Biology},
        YEAR={2012},
},

Main document:

 \documentclass[12pt]{article}
\usepackage{cite}
\usepackage{graphicx}
\begin{document}
\title{xxxxxxxxxxxxxxxxxxxxxxxxx: An Overview}
\maketitle

\section{Introduction}


\bibliographystyle{acm}
\bibliography{refer}
\end{document}

bibstyle=acm
enter image description here

Best Answer

(Aside: This answer was updated fully after the OP posted a corrected set of bibliographic entries.)

Thanks for updating the set of bibliographic entries, so that they are now minimally compilable. A comment up front: The issue with some names being truncated to initials should be gone completely. I trust you can no longer generate "T. v. d. P".

You still need to apply a few more corrections. Among them are:

  • First and foremost, be sure to list all authors of a publication. For entry #8, you currently list only two of the eight [8!] authors (and you manage to have three syntax errors in the truncated author field). Why suppress 75 percent of the author names? If you must truncate the list, write and others at the end of the author field. (By the way, the article was published in Science.)

  • Be sure to get the uppercasing of middle initials right. If you write Hanna k. de Jong, BibTeX will treat "k." as belonging to the "von component" of the author's full name. Do write Hanna K. de Jong. This will ensure that the item is sorted under "D" (for "de Jong") rather than under "K" (for "k. de Jong").

  • Since the acm bibliography style applies "sentence style" to the contents of the title field, it is essential to encase words that must not be converted to lowercase -- such as "HIV" and "RNA" -- in curly braces.

  • Be careful not to use non-ASCII characters such as ("en-dash") in the bib file. Instead, write -- (two consecutive ordinary dashes).

Two final suggestions: First, please consider adding fields such as volume, numberand pages to the entries of type @article; while it's not "compulsory" to provide these pieces of information, your readers will almost certainly appreciate you doing so. Second, do consider using keys that are a bit more mnemonic than "1", "2", etc. You'll find that issuing various \cite instructions will become much more manageable if you use mnemonic keys.

enter image description here

\documentclass{article}
\usepackage{filecontents}
\begin{filecontents}{mybibliography.bib}
@article{ 1,
        AUTHOR={Anu Raghunathan and Jennifer Reed},
        TITLE={Constraint-based analysis of metabolic capacity of {Salmonella} typhimurium during host-pathogen interaction},
        JOURNAL={BMC Systems Biology},
        YEAR={2009},
}

@article{ 2,
        AUTHOR={Hanna K. de Jong and Chris M. Parry and Tom van der Poll and W. Joost Wiersinga},
        TITLE={Host--Pathogen Interaction in Invasive Salmonellosis},
        JOURNAL={PLoS Pathogens},
        YEAR={2012},
 }

@article{ 3,
        AUTHOR={Vinod Scaria and Manoj Hariharan and Beena Pillai and Souvik Maiti and Samir K. Brahmachari},
        TITLE={Host--virus genome interactions: macro roles for {microRNAs}},
        JOURNAL={Cellular Microbiology},
        YEAR={2007},
 }

@article{ 4 ,
        AUTHOR={Zhumur Ghosh and Bibekanand Mallick and Jayprokas Chakrabarti},
        TITLE={Cellular versus viral {microRNAs} in host--virus interaction},
        JOURNAL={Nucleic Acids Research},
        YEAR={2009},
}

@article{ 5 ,
        AUTHOR={Vinod Scaria and Manoj Hariharan and Samir K. Brahmachari},
        TITLE={Host-virus interaction: a new role for {microRNAs}},
        JOURNAL={BioMedCentral},
        YEAR={2006},
 }

@article{ 6 ,
        AUTHOR={Renate Konig and Yingyao Zhou},
        TITLE={Global Analysis of Host-Pathogen Interactions that Regulate Early-Stage {HIV-1} Replication},
        JOURNAL={Cell},
        YEAR={2008},
}

@article{ 7,
        AUTHOR={Man Lung Yeung and Laurent Houzet and Venkat S.R.K. Yedavalli and Kuan-Teh Jeang},
        TITLE={A Genome-wide Short Hairpin {RNA} Screening of {Jurkat T-cells} for Human Proteins Contributing to Productive {HIV-1} Replication},
       JOURNAL={J Biol Chem},
        YEAR={2009},
},

@article{ 8 ,
        AUTHOR={Abraham L. Brass and Derek M. Dykxhoorn and Yair Benita 
        and Nan Yan and Alan Engelman and Ramnik J. Xavier and Judy
        Lieberman and Stephen J. Elledge},
        TITLE={Identification of host proteins required for {HIV} infection through a functional genomic screen},
        JOURNAL={Science},
        YEAR={2008},
}

@article{ 9,
        AUTHOR={Christopher M. Sassetti and Eric J. Rubin},
        TITLE={Genetic requirements for mycobacterial survival during infection},
        JOURNAL={PNAS},
        YEAR={2003},
},

@article{ 10,
        AUTHOR={Nadav Rappoport and Michal Linial},
        TITLE={Viral Proteins Acquired from a Host Converge to Simplified Domain Architectures},
        JOURNAL={PLoS Computational Biology},
        YEAR={2012},
}
\end{filecontents}

\bibliographystyle{acm}
\hyphenation{micro-RNAs brahma-chari}

\begin{document}
\nocite{*}
\bibliography{mybibliography}
\end{document} 
Related Question