Created
May 30, 2016 13:57
-
-
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.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
\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