I'm trying to put the first name of the authors in the references, abbreviated. For example John Smith should become J. Smith. I was able to produce the problem even from official MLSP conference template. Here is the minimal example:
\documentclass{article}
\usepackage{mlspconf}
\title{How abbriviated first name appear in the references}
\name{John Doe}
\begin{document}
\maketitle
\begin{abstract}
The problem is apearing of full first name in the references
\end{abstract}
\begin{keywords}
test first name
\end{keywords}
\section{Introduction}
This is a test \cite{Schr}.
\bibliographystyle{IEEEbib}
\bibliography{refs}
\end{document}
and here is the .bib tex:
@article{Schr,
author = {Smith, John and Doe, George},
title = {Test name abbriviations},
journal = {Commun. ACM},
issue_date = {May 2018},
volume = {65},
number = {4},
month = apr,
year = {2018},
issn = {0002-1834},
pages = {60--69},
numpages = {11},
publisher = {ACM},
address = {New York, NY, USA},
}
NOTE1: I'm using bibtex and just in case, the IEEEbib.bst and mlspconf.sty are available at here