I am using the Master Thesis template of LEd (build .526300). Everything is working fine, but the only problem is that the bibliography does not appear after compilation (in all possible dvi/eps/pdf outputs). Strangely, the bibliography section is properly displayed in the table of contents but it is empty, even though i have added a few entries. The citations in the main text appear with a question mark [?]. I did not make any changes in the main MSc.tex file:
Code: Select all
% *************** Main matter ***************
\mainmatter
\input{ack/ack.tex}
\input{chap1/chap1.tex}
\input{chap2/chap2.tex}
\input{chap3/chap3.tex}
\input{chap4/chap4.tex}
% *************** Bibliography ***************
\bibliographystyle{plain}
{\small\bibliography{MSc}}
% *************** Appendixes ***************
\appendix
\appendixpage*
\input{app1/app1.tex}
Code: Select all
% ********** Bibliography **********
% ****************************************
% Your bibliography should be stored here
% ****************************************
@book{Allen,
title = {A real book title},
author = {Leslie},
address = {New York, NY},
publisher = {Springer},
year = {1999},
edition = {corr. ed.},
}
Thanks