참고문헌 스타일: 단일 문자로 된 저자 이름

참고문헌 스타일: 단일 문자로 된 저자 이름

각 저자의 이름을 단일 문자로 표시하고 모든 참고문헌에 숫자를 부여하는 참고문헌을 생성하고 싶습니다.

예:

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

그리고내 코드는

% 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}

**참조 코드는 **입니다.

@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}
    }

이는 다음과 같이 참조를 제공합니다. 참고](https://i.stack.imgur.com/XGn6Z.png)![1

위에서 언급한 줄 번호와 함께 예제와 같은 자동 참고문헌을 생성하려면 어떤 패키지를 설치해야 하며 어떻게 설치해야 합니까?

참고하세요 내 코드 사용 chicaco스타일을 변경하고 위의 예에 인용된 대로 참조를 만들고 싶습니다.

답변1

abbrvnat나는 당신이 참고문헌 스타일(및 인용 관리 패키지)을 사용해 볼 수 있다고 믿습니다 natbib.

여기에 이미지 설명을 입력하세요

\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}

관련 정보