Generalbookmarks in pdf for chapter points to Appendix

LaTeX specific issues not fitting into one of the other forums of this category.
Post Reply
zainy100
Posts: 2
Joined: Thu Nov 05, 2009 3:56 pm

bookmarks in pdf for chapter points to Appendix

Post by zainy100 »

Hi,
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} 

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

zainy100
Posts: 2
Joined: Thu Nov 05, 2009 3:56 pm

bookmarks in pdf for chapter points to Appendix

Post by zainy100 »

I found the solution and post it here so others can see it. I just needed to include my appendices like the following:

Code: Select all

\begin{appendices}
…
\end{appendices}
Post Reply