在 LaTeX 中使用参考文献和书目列表

在 LaTeX 中使用参考文献和书目列表

我正在尝试制作一个包含单独参考书目和参考文献列表的 LaTeX 文档。它们都有相关的 reference.bib 和 bibliography.bib。这是当前的 LaTeX 文档:

\documentclass[10pt]{article}
\usepackage{tocloft}
\usepackage{tabu}
\renewcommand\cftsecleader{\cftdotfill{\cftdotsep}}

\usepackage[margin=1in]{geometry}
\usepackage[toc,title]{appendix}
\usepackage[nottoc,numbib]{tocbibind}

\begin{document}

\section{Introduction}
Blah \cite{sharma2012sql}
\section{Conclusion} 
Blah 

\bibliographystyle{unsrt}
\bibliography{references,bibliography}
\section{Appendices}
Blah

\end{document}

输出结果如下:在此处输入图片描述

这几乎就是我想要的,只是,我想要一个单独的参考书目列表,而不是将它与我​​的参考文献合并(如下所示)。 在此处输入图片描述

相关内容