두 가지 스타일의 참고문헌 통합

두 가지 스타일의 참고문헌 통합

설문 조사와 체계적인 문헌 검토를 통해 우리는참고자료그리고1차 연구: 검토에서 분석 및 검토 중인 연구입니다. 두 가지 모두 문서에서 참조되어야 했습니다.

라텍스 파일에 참고자료와 기본 연구를 구별하는 두 가지 별도의 참고자료 스타일을 가질 수 있는 방법이 있습니까? 예를 들어, 다음과 같은 간단한 예와 비슷한 내용이 있어야 합니다.

In this review, we followed the procedures introduced in our earlier
work in [1] and [2] and extended by Heisenberg and Pinkman in [3] to analyse the
primary studies [PS1], [PS2], and [PS3].

References:
[1] Reference 1 
[2] Reference 2 
[3] Reference 3 

Primary studies:
[PS1] Primary Study 1
[PS2] Primary Study 2
[PS3] Primary Study 3 

업데이트 날짜: 2017년 2월 1일

의견을 바탕으로 패키지를 사용해 보았습니다 splitbib. 나는 제공된 것과 동일한 정확한 코드를 시도했습니다.패키지 문서, 그러나 다음과 같은 오류가 발생했습니다.

! File ended while scanning use of \@bibitem.
<inserted text>
\par
<*> test.tex
I suspect you have forgotten a `}', causing me
to read past where you wanted me to stop.
I'll try to recover; but if the error is serious,
you'd better type `E' or `X' now and fix your file.

스크립트를 실행할 때:

\documentclass{article}
\usepackage{splitbib}
\begin{category}[A]{First category}
\SBentries{entry1,entry4}
\end{category}
\begin{category}[B]{Second category}
\begin{category}{First sub-category}
\SBentries{entry2,entry6}
\end{category}
\begin{category}{Second sub-category}
\SBentries{entry5,entry3}
\end{category}
\end{category}
\begin{document}
We cite~\cite{entry1,entry3,entry4,entry5}. Note that we cite neither
\verb+entry2+ nor \verb+entry6+,even though they have been assigned a category. defined in the last category. The first
sub-category will then not appear in the bibliography.
% \def\SBlongestlabel{A1}
\SBtitlestyle{bar}
\SBsubtitlestyle{none}
\begin{thebibliography}{1}
\bibitem{entry1} This is the first entry.
\bibitem{entry3} This is the third entry.
\bibitem{entry4} This is the fourth one.
\bibitem{entry5} This is the last one.
\end{thebibliography}
\end{document}

관련 정보