When I include the appendix in the main file and the bookmarks generated, the 2 first links to chapter 1 and 2 appears correctly, but points to the last 2 appendices. I tried to solve the problem, but couldn't figure out why? any solutions really appreciate it.
Here is the code:
Code: Select all
\documentclass[a4paper,12pt, fleqn]{eurongi}
\usepackage{graphics} % Packages to allow inclusion of graphics
\usepackage{xcolor}[2007/01/21]
\usepackage{hyperref} % For creating hyperlinks in cross references
\usepackage[ open, openlevel=2, atend ]{bookmark}[2009/11/04]
\bookmarksetup{color=magenta}
\BookmarkAtEnd{%
\bookmarksetup{startatroot}%
\bookmark[named=LastPage, level=0]{End/Last page}%
\bookmark[named=FirstPage, level=1]{First page}%
}
%-------abstarct and ack here--------
\include{abbr}
\pagenumbering{arabic}
\include{Introduction}
\include{Methodolgy}
\include{LiteratureReview}
\include{ExperimentChapter}
\include{ProposedModelFix}
\include{AppDesign} % Revised 6
\include{Conclusion} %
%---------References--------
\renewcommand{\bibname}{References}
\bibliographystyle{ieeetr}
\bibliography{newThesisRefrence}
%---------Appendix---------
\newpage
\appendix
\appendixpage
\addappheadtotoc
\include{appb}
\include{appc}
\end{document}