2つのスタイルの参照を組み込む

2つのスタイルの参照を組み込む

調査と体系的な文献レビューを行う中で、私たちは参考文献そして一次研究: レビューで分析およびレビューされている研究。両方とも文書内で参照される必要がありました。

参考文献と主要な研究を区別するために、LaTeX ファイルに 2 つの異なる参考文献スタイルを設定する方法はありますか? たとえば、次の簡単な例のようなものが必要です。

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}

関連情報