참고문헌의 순서 부록의 참고문헌은 참고문헌에서 가장 먼저 나타납니다.

참고문헌의 순서 부록의 참고문헌은 참고문헌에서 가장 먼저 나타납니다.

다음으로 구성된 모든 챕터를 포함하는 "마스터" 파일이 있습니다.

\documentclass[11pt,a4paper]{scrreprt}
\usepackage[left=1.5cm,right=1.5cm,top=2cm,bottom=2cm,includeheadfoot]{geometry}
\usepackage[ngerman,british]{babel}
\usepackage{./tex/mystyle}

\begin{document}
\input{./tex/titlepage}
\tableofcontents
\clearpage
\include{./tex/introduction}
\include{./tex/simulation}
\include{./tex/results}
\bibliography{./tex/bibliography}
\include{./tex/appendices}
\end{document}

내가 사용하는 "mystyle" 파일에서

\ProvidesPackage{./tex/mystyle}
\usepackage[numbers,super,square,sort]{natbib}
\bibliographystyle{rsc}

저는 Bibtex를 사용하고 있습니다. 내 생각에 부록 형식을 지정하는 가장 쉬운 방법은 화려한 부록 패키지를 사용하지 않고 부록을 일반 장으로 두고 수동으로 레이블을 조작하여 레이블이 'A'로 표시되고 섹션이 'A.1', 'A'로 표시되는 것이라고 생각했습니다. .2' 등 내 부록 파일은 다음으로 시작됩니다.

\setcounter{chapter}{0}
\renewcommand{\thechapter}{\Alph{chapter}}
\chapter{Appendices}
\section{Mathematical Treatments}
\subsection{Equations of motions for a charged particle in an accelerating potential~\citep{Demtroeder2008, Hoffmann2007}}
Two hypothetical infinite flat surfaces separated by a distance $d$ and with the electric potentials bla bla bla

보시다시피 Demtroeder2008과 Hoffmann2007이라는 두 개의 참고문헌이 이제 참고문헌의 시작 부분에 나타납니다. 이는 실제 첫 번째 참고문헌이 이제 참고문헌 3이기 때문에 약간 짜증나는 일입니다. 참조가 실제로 전체 보고서에 나타나는 순서대로 표시되도록 하려면 어떻게 해야 합니까?

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

답변1

참고 rsc문헌 스타일에서는 항목을 저자의 성을 기준으로 알파벳순으로 정렬하지 않습니다. 대신 문서에서 인용 설명선이 나타나는 순서대로 나열됩니다. 부록 장을 읽을 때까지 인용 표시가 발생하지 않음에도 불구하고 Demtroeder2008및 항목이 참고문헌 목록에 먼저 표시되는 데는 두 가지 이유가 있습니다.Hoffmann2007

  • 인용 명령은 지시문의 인수 내부에서 발생합니다 \subsection.

    \subsection{Equations of motions for a charged particle in 
    an accelerating potential~\citep{Demtroeder2008, Hoffmann2007}}
    
  • \tableofcontents문서 시작 부분에 지시문이 있습니다 . 인용 설명선을 포함하여 다양한 섹션화 명령의 인수가 목차에 표시됩니다. 이것이 바로 해결하려는 문제의 원인입니다.

이러한 결과를 방지하려면 선택적인 "짧은" 버전의 분할 명령을 사용할 수 있으며, 특히 \citep짧은 버전에서는 지침을 생략할 수 있습니다. 있는 경우 짧은 버전이 목차로 사용됩니다. 따라서 다음 명령 형식을 사용하는 것이 좋습니다 \subsection.

\subsection[Equations of motions for a charged particle in an
accelerating potential]{Equations of motions for a charged particle
in an accelerating potential~\citep{Demtroeder2008, Hoffmann2007}}

\citep짧은 버전에 지침이 없다는 점을 제외하면 짧은 버전과 전체 버전이 동일하다는 점에 유의하세요 .

이러한 방식으로 지시문을 조정한 후에는 \subsection문서를 적어도 두 번 다시 컴파일하여 목차, 서식이 지정된 참고 문헌 및 인용 설명선에 대한 모든 변경 사항을 완전히 전파해야 합니다.

관련 정보