我正在尝试为每个部分生成一个特定的参考书目。Latex 每个部分生成 1 个 .aux 文件(即,在本例中生成 3 个 .aux 文件)。
我可以生成 .pdf,但引用没有出现(只有一个“?”)。
我相信问题可能出在我编译数据的方式上,但我无法弄清楚如何“对所有这些 .aux 文件进行 bibtex 处理”,正如此网页上所写:https://www.overleaf.com/learn/latex/Questions/Creating_multiple_bibliographies_in_the_same_document
我正在使用下面的代码。
\documentclass[12pt, a4paper]{article}
\usepackage[sectionbib]{bibunits}
\defaultbibliographystyle{unsrt}
\defaultbibliography{/Users/Valerian/Dropbox/Mes_fichiers/PhD/15_Bibliography/1_Bibliography_bib/library}
\begin{document}
\bibliographyunit[\section]
\section*{section 1}
Some text this guy said \cite{Adler2013}.
\putbib
\section*{section 2}
other text this gurl said \cite{Droney1996}.
\putbib
\section*{section 3}
other text the dog said \cite{Ceballos2011}.
\putbib
\end{document}