I'm new in LaTeX and trying to write my Master Thesis in it. Now I was compiling the file and i saw that the frontmatter uses roman letters (which i like), however they are not used in PDF reader as roman letters. How could I set LaTeX in a way the frontmatter will be read as I-II-. and the mainmatter as 1-2-... in the page selector of my PDF reader (on the pages itself it's working, but not for Adobe or whatever you use)?
Here a MWE with other packages I use commented out:
Code: Select all
\documentclass[11pt]{book}
\pagestyle{headings}
% Packages
%\usepackage{a4wide}
%\usepackage{lscape}
%\usepackage{color}
%\usepackage{graphics,graphicx,subfigure,wrapfig}
%\usepackage{synttree}
\usepackage{appendix}
%\usepackage[numbers]{natbib}
%\usepackage{polynom,amssymb,amsmath}
%\usepackage{multirow}
\begin{document}
\frontmatter
\begin{titlepage}
%\include{titlepage}
\end{titlepage}
\tableofcontents
\mainmatter
\chapter{Test}
Test text
%\include{introduction}
%\include{conclusion}
\appendix
\addappheadtotoc
\chapter{My Appendix}
Test appendix
\backmatter
\cleardoublepage
\addcontentsline{toc}{chapter}{References}
%\bibliographystyle{abbrvnat}
%\bibliography{References}
\end{document}