我正在尝试制作一个包含单独参考书目和参考文献列表的 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}