在进行调查和系统文献综述时,我们参考和初步研究:评论中正在分析和审查的研究。两者都需要在文件中引用。
有没有办法在 latex 文件中设置两种不同的参考样式,以区分参考文献和主要研究?例如,我们应该有类似于以下简单示例的内容:
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}