I have tried this,the codes look followingStefan_K wrote:Sure, LaTeX is not easy at the beginning. With more experience, there's full control. I'm sure it would be easy if I could see the code. More information needed? Sure - as I said above: aminimal working example. Follow the link to learn why and how. Your task is just to provide information to reproduce the problem. We would do the task to fix it then.
Stefan
Code: Select all
% Template file for a standard thesis
\documentclass[12pt]{thesis}
\usepackage{natbib}
\begin{document}
reference
\bibliographystyle{apa}
\bibliography{mybib}
\nocite{*}
\cite{HK}
\end{document}
Code: Select all
@BOOK{HK,
AUTHOR={H. Kopka and P. W. Daly},
TITLE={A Guide to LaTeX},
PUBLISHER={Addison-Wesley},
ADDRESS={Reading, MA},
YEAR=1999.
}
I have compile .tex(pdftex)-compile .bib(bibtex separately)-compile .tex (pdftex)
The tool used is Texworks
reference wasn't printed out
Thank you very much