I'm writing my thesis and I have some troubles using bibunits. I work with MiKTeX 2.8 and TeXnicCenter on Windows to produce PDF files.
For example, if I have my main file "test.tex"
Code: Select all
\documentclass{article}
\usepackage{bibunits}
\begin{document}
\begin{bibunit}[plain]
blablabla\cite{alexandre2000} .
\putbib{bibtest}
\end{bibunit}
\end{document}
Code: Select all
@article{alexandre2000,
author = {Alexandre, M.},
title = {blabla},
journal = {Journal},
volume = {1},
pages = {1},
year = {2000}
}
I don't understand what is the problem since I follow exactly what is say in the bibunits documentation.
And if I used a standard procedure for my bibliography, like this
Code: Select all
\documentclass{article}
\usepackage{cite}
\begin{document}
blablabla\cite{alexandre2000}.
\bibliographystyle{plain}
\bibliography{bibtest}
\end{document}
Thanks!