mirror of
https://github.com/overleaf/overleaf.git
synced 2024-10-31 21:21:03 -04:00
23 lines
404 B
TeX
23 lines
404 B
TeX
\documentclass{report}
|
|
|
|
\usepackage{multibib}
|
|
\newcites{one}{First references}
|
|
|
|
\begin{document}
|
|
|
|
\chapter{First chapter}
|
|
|
|
The answer to life the universe and everything is 42 \citeone{DouglasAdams}
|
|
|
|
\bibliographystyleone{plain}
|
|
\bibliographyone{bibliography}
|
|
|
|
\chapter{Second chapter}
|
|
|
|
All that glitters is not gold \cite{Tolkien}
|
|
|
|
\bibliographystyle{plain}
|
|
\bibliography{bibliography}
|
|
|
|
\end{document}
|
|
|