I would like to add footnotes, with the text of the .bib file, not only the name of the cite. Found some solutions using jurabib, but my other packages aren't compatible. How could I fix this?
My tex file:
\documentclass[]{report}
\usepackage{times}
\usepackage[dutch]{babel}
\usepackage{cite}
\usepackage{comment}
\usepackage[hidelinks]{hyperref} %Makes Table of Contents clickable
\begin{document}
\includecomment{comment} %change exclude to include for showing in pdf too
% Article top matter
\title{X}
\author{XX}
\date{\today}
\maketitle
\tableofcontents
%Begin text
Text\footnote{name1} more text
%End text
\bibliography{pws}{}
\bibliographystyle{plain}
\end{document}
My bib file:
@misc{name1,
author = "Name, Name",
title = "",
date = "17-05-2014",
howpublished = "conference"
}
