Consider the following code:
\documentclass{scrbook}
\usepackage[bookmarks, bookmarkstype=toc]{hyperref}
\begin{document}
\tableofcontents
\chapter{Introduction}
\part{First part}
\chapter{First chapter}
\chapter{Second chapter}
\part{Second part}
\chapter{Third chapter}
\chapter{Fourth chapter}
\chapter{Conclusion}
\end{document}
In the resulting PDF both tables of contents (the one produced by \tableofcontents and the list of PDF bookmarks) have the following hierarchy:
Introduction
First part
- First chapter
- Second chapter
Second part
- Third chapter
- Fourth chapter
- Conclusion
Is it possible to put 'Conclusion' at the same level of hierarchy with 'Introduction', 'First part' and 'Second part'?