
各著者の名が 1 文字で示され、すべての参照に番号が付けられた参考文献を生成したいと思います。
例:
[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}
}
これにより、次の参照が提供されます。
上記の例のように行番号付きの自動参考文献を生成するには、どのパッケージをインストールする必要がありますか?
ご了承ください 私のコードは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}