Skip to content

Instantly share code, notes, and snippets.

@deparkes
Created May 30, 2016 13:57
Show Gist options
  • Save deparkes/3df4da19de3359dd0a1a59a59f9936cf to your computer and use it in GitHub Desktop.
Save deparkes/3df4da19de3359dd0a1a59a59f9936cf to your computer and use it in GitHub Desktop.
A sample file for creating a publications list in a thesis or dissertation, separate fromt the references list.
\documentclass{article}
\usepackage{natbib}
\usepackage{bibunits}
\begin{document}
% bibunit to list our publications
\begin{bibunit}[plain]
\renewcommand{\bibsection}{\large \textbf{\begin{center}
Publications
\end{center}}}
\makeatletter
\renewcommand\@biblabel[1]{}
\makeatother
\def\bibfont{\small}
%list all the references in the publications bibtex file
\nocite{*}
\putbib[publications]
\end{bibunit}
\section{Section 1}
Thesis content \dots
% list all of the references in the References bibtext file
\nocite{*}
\bibliographystyle{unsrt}
\renewcommand{\bibname}{References}
\bibliography{references}
\end{document}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment