I have been asked to generate a bibliography document. Normally when I construct a latex document, all the references appear at the end of the document and I put in citations , eg [12], and at the end of the PDF, I see
12. paper name, names, date vol Num.
and thats great.
This time I wish to generate a document, usign JabRef, where the references appear under section headings (eg. under the section heading "Class one" I wish to see "12. paper name, names, date vol Num." and NOT "[12]"). Additionally, I would like to enumerate through them and do this below, but then the Section headers appear indented, which I don't want.
Finally, I have been forced to fit all my references into 3 pages of a4. I have already made the page very wide and the text small. What I would like to do is decrease the vertical space between [n] and [n+1] references. Any ideas how to do this?
Can anyone help?
thank you!!
My MWE example is here:
Code: Select all
\documentclass{article}
\usepackage{url}
\usepackage{hyperref}
\usepackage{graphicx}
\usepackage[numbers]{natbib}
\usepackage{amsmath}
\usepackage{mathtools}
\usepackage{xcolor}
%\usepackage{fullpage}
%\usepackage[framed,numbered]{StyleFiles/mcode}
\newcommand{\Norm}{\mathop{\mathrm{Norm}}}
\newcommand{\tr}{\mathop{\mathrm{tr}}}
\newcommand{\vect}{\mathop{\mathrm{vec}}}
\newcommand{\diag}{\mathop{\mathrm{diag}}}
\newcommand{\argmin}{\mathop{\mathrm{argmin}}}
\pagestyle{headings}
\setcounter{page}{1}
\pagenumbering{arabic}
\usepackage{fancyhdr}
\setlength{\headheight}{15.2pt}
\pagestyle{fancy}
\fancyhf{}
\lhead{\fancyplain{}{me, United Kingdom}}
\rhead{\fancyplain{}{\today}}
\rfoot{\fancyplain{}{\thepage}}
%\usepackage{a4wide}
\usepackage[textwidth=19cm,textheight=24cm]{geometry}
\begin{document}
\title{Bibliography for my Work}
\author{me \\ No University, United Kingdom}
\date{\today}
\maketitle
\begin{enumerate}
\section*{Class one}
\item \cite{myRef1}
\item \cite{myRef2}
\item \cite{myRef3}
\section*{Class two}
\item \cite{myRef4}
\item \cite{myRef5}
\item \cite{myRef6}
\section*{Class three}
\item \cite{myRef7}
\item \cite{myRef8}
\item \cite{myRef9}
\end{enumerate}
\bibliographystyle{ieeetr}
\renewcommand{\bibname}{Bibliography}
\bibliography{C:/Users/me/References/references}
\end{document}