I'm new to this forum so I'm not entirely sure if this is in the right place, although it doesn't seem to fit in all the other forums.
All I want is to get \footcite to work, to put my citations in my footnote bit.
So far I have done this:
In my .tex file:
Code: Select all
\documentclass[11pt]{article}
\usepackage{textcomp}
.... other packages...
....
\bibliographystyle{plain}
\usepackage{footbib}
\begin{document}
This is a footcite \footcite{milan}
\end{document}
Code: Select all
@misc{milan,
AUTHOR="Dr Milan D. Mihajlovic",
TITLE="CS609: Algorithms for differential equations, Lecture 7",
HOWPUBLISHED="\url{http://www.cs.man.ac.uk/~milan/}",
YEAR="2009"
}
And in my footnote I have:This is footcite [?]
I'm using windows, using texnicenter, if that help?[?] *** ERROR: citation `milan' undened ***
Many thanks in advance!