참고 문헌 설정 TexStudio Ubuntu

참고 문헌 설정 TexStudio Ubuntu

내 참고문헌을 오름차순으로 정렬하고 싶습니다. 내 참고문헌을 알파벳순으로 나열하고 싶습니다. 내 참고문헌 코드는 다음과 같습니다.

\bibliographystyle{abbrvnat}
% This specifies the location of the file containing the bibliographic information.
\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{mybib}
\nocite{*}

이 스타일로 표시되는 참고문헌: 참조](https://i.stack.imgur.com/kkcFk.png)! 하지만 참조 번호 4가 1번에 있어야 하고 두 번째가 표시되어야 이 방식으로 알파벳순으로 정렬되기를 원합니다. 도와주세요

답변1

귀하의 질문을 이해했는지 잘 모르겠지만, Boneh et. al을 시작하려면 @PREAMBLE{ {\providecommand{\noopsort}[1]{}} }bib 파일에 추가 Boneh하고 {{\noopsort{aaaaaaaaBoneh}}{Boneh}}.

\documentclass{article}

\usepackage{filecontents}
\begin{filecontents*}{\jobname.bib}
@PREAMBLE{ {\providecommand{\noopsort}[1]{}} }

@article{reese,
  author       = {Reese, Trevor R.},
  title        = {Georgia in {Anglo-Spanish} Diplomacy, 1736--1739},
  journaltitle = {William and Mary Quarterly},
  year         = 1958,
  series       = 3,
  volume       = 15,
  pages        = {168-190},
  langid       = {english},
  langidopts   = {variant=american},
  annotation   = {An \texttt{article} entry with a \texttt{series} and a
                  \texttt{volume} field. Note the format of the series. If the
                  value of the \texttt{series} field is an integer, this number
                  is printed as an ordinal and the string \enquote*{series} is
                  appended automatically},
}

@article{sarfraz,
  author       = {M. {{\noopsort{aaaaaaaaSarfraz}}{Sarfraz}} and M. F. A. Razzak},
  title        = {Technical section: {An} algorithm for automatic capturing of
                  the font outlines},
  year         = 2002,
  volume       = 26,
  number       = 5,
  pages        = {795-804},
  issn         = {0097-8493},
  journal      = {Computers and Graphics},
  annotation   = {An \texttt{article} entry with an \texttt{issn} field},
}
\end{filecontents*}

\begin{document}

\cite{sarfraz,reese}

\bibliographystyle{abbrvnat}
\bibliography{\jobname}


\end{document}

관련 정보