it is ordered by i,ii,iii(with abstract etc)
then started by 1,2,3,...(the contents)
just like the those normal books we have seen.
I have seen some pdf files able to display the page number directly matched the page number specified, i.e. it could display i,ii,iii,.., 1,2,3, may I know how to do it?
I have tried hyperref package, but it does not work, the latex is as follows:
Code: Select all
\documentclass[12pt,a4paper]{article}
\usepackage{float}
\usepackage[pdfpagelabels]{hyperref}
\title{\huge Title \\[2cm]}
\vfill
\date{\Large June 2011}
\begin{document}
\maketitle \thispagestyle{empty}
\newpage
\pagenumbering{roman} \pagebreak
\tableofcontents \pagebreak
\pagenumbering{arabic}
\section{Sec1}
\subsection{subsec 1.1}
\subsection{subsec 1.2}
\section{Sec2}
\section{Sec3}
\section{Sec4}
\section{Sec5}
\section{Sec6}
\section{Sec7}
\end{document}