I have faced a problem, I can't seem to find a solution for. I am writing a Thesis. Each chapter is saved separately. To get the whole Thesis, I do this:
Code: Select all
\begin{document}
\maketitle
\include{TitlePage}
\let\cleardoublepage\clearpage
\include{Intro}
\include{Chap1}
...
\include{Chap9}
\include{Experimental}
\end{document}
Code: Select all
\chapter{Chapter1}
text text text
\newpage
\bibliographystyle{unsrt}
\bibliography{MYLIBRARY}
Code: Select all
\begin{document}
\maketitle
\include{TitlePage}
\let\cleardoublepage\clearpage
\include{Intro}
\include{Chap1}
...
\include{Chap9}
\include{Experimental}
\newpage
\bibliographystyle{unsrt}
\bibliography{MYLIBRARY}
\end{document}
Code: Select all
This is BibTeX, Version 0.99d (TeX Live 2010)
Capacity: max_strings=35307, hash_size=35307, hash_prime=30011
The top-level auxiliary file: final_output.aux
...
A level-1 auxiliary file: Chap1.aux
...
A level-1 auxiliary file: Chap9.aux
A level-1 auxiliary file: Experimental.aux
The style file: plain.bst
Database file #1: MYLIBRARY.bib
Repeated entry---line 5609 of file MYLIBRARY.bib
: @article{428
: ,
I'm skipping whatever remains of this entry
Warning--I didn't find a database entry for "452"
Warning--empty journal in 316
...
You've used 164 entries,
2118 wiz_defined-function locations,
1325 strings with 28671 characters,
and the built_in function-call counts, 52165 in all, are:
= -- 4903
> -- 2786
< -- 4
+ -- 1106
- -- 928
* -- 3826
:= -- 8994
add.period$ -- 465
call.type$ -- 164
change.case$ -- 944
chr.to.int$ -- 0
cite$ -- 179
duplicate$ -- 1743
empty$ -- 3970
format.name$ -- 928
if$ -- 10722
int.to.chr$ -- 0
int.to.str$ -- 164
missing$ -- 149
newline$ -- 796
num.names$ -- 328
pop$ -- 886
preamble$ -- 1
purify$ -- 792
quote$ -- 0
skip$ -- 1252
stack$ -- 0
substring$ -- 2958
swap$ -- 196
text.length$ -- 4
text.prefix$ -- 0
top$ -- 0
type$ -- 638
warning$ -- 15
while$ -- 444
width$ -- 167
write$ -- 1713
(There was 1 error message)
Can anybody please give me a hint, how to fix this problem?