Estilo de bibliografía: nombre del autor como una sola letra.

Estilo de bibliografía: nombre del autor como una sola letra.

Quiero generar la bibliografía en la que el nombre de cada autor se indique con una sola letra y se le dé un número a cada referencia:

Ejemplo:

[1] P. Ackermann and M. Kreuzer. Grobner basis cryptosystems. Applicable Alg.
in Eng., Commun. and Comput., 17:173–194, 2006. 

ymi código es

% B I B L I O G R A P H Y
% -----------------------

% The following statement selects the style to use for references.  It controls the sort order of the entries in the bibliography and also the formatting for the in-text labels.
\bibliographystyle{chicago}
% This specifies the location of the file containing the bibliographic information.
% It assumes you're using BibTeX (if not, why not?).
\cleardoublepage % This is needed if the book class is used, to place the anchor in the correct page,
                 % because the bibliography will start on its own page.
                 % Use \clearpage instead if the document class uses the "oneside" argument
\phantomsection  % With hyperref package, enables hyperlinking from the table of contents to bibliography
% The following statement causes the title "References" to be used for the bibliography section:
\renewcommand*{\bibname}{References}

% Add the References to the Table of Contents
\addcontentsline{toc}{chapter}{\textbf{References}}

\bibliography{nu-ethesis}

y **el código de referencia es **

@article{link:cac,
 title={A comparison between public key authority and certification authority for distribution of public key},
      author={Agarwal, Gaurav and Singh, Saurabh},
      journal={International Journal of Computer Science and Information Technologies},
      volume={1},
      number={5},
      pages={332--336},
      year={2010}
    }

y esto dará referencia de la siguiente manera: Referencia](https://i.stack.imgur.com/XGn6Z.png)![1

¿Qué paquete necesito instalar para generar la bibliografía automática como en el ejemplo mencionado anteriormente con el número de línea y cómo?

Tenga en cuenta que mi código usa chicacoestilo y quiero cambiar esto y hacer mi referencia como se cita en el ejemplo anterior

Respuesta1

Creo que puedes intentar utilizar el abbrvnatestilo de bibliografía (y el natbibpaquete de gestión de citas).

ingrese la descripción de la imagen aquí

\RequirePackage{filecontents}
\begin{filecontents}{mybib.bib}
@article{link:cac,
 title   = {A comparison between public key authority and 
            certification authority for distribution of 
            public key},
 author  = {Agarwal, Gaurav and Singh, Saurabh},
 journal = {International Journal of Computer Science 
            and Information Technologies},
 volume  = {1},
 number  = {5},
 pages   = {332--336},
 year    = {2010}
}
\end{filecontents}

\documentclass{article}
\usepackage[numbers]{natbib}
\bibliographystyle{abbrvnat}

\begin{document}
\noindent
\citet{link:cac}, \cite{link:cac}
\bibliography{mybib}
\end{document}

información relacionada