My Main File: (master.tex)
% <<<<<<<<<<<<<<<<<< DOCUMENT CONTROL SETTINGS STARTS >>>>>>>>>>>>>>>>>>>>
%\documentclass[12pt]{article}
\documentclass[dvipsnames,cmyk]{book}
% Import Control Settings from Style File
\usepackage{../../Style/masterstyle}
% ======== Settings for Chapter Beginning Layout Starts ===============
% This is not a generic setting, may vary for different documents
% Hence, not added to Style File
\geometry{
paperwidth=216mm, paperheight=303mm,
left=23mm, %% or inner=23mm
right=18mm, %% or outer=18mm
top=23mm, bottom=23mm,
headheight=\baselineskip,
headsep=7mm,
footskip=7mm
}
% xxxxxxxxxx Settings for Chapter Beginning Layout Ends xxxxxxxxxxxxxxx
% Generate Index
\makeindex
% <<<<<<<<<<<<<<<<<<< DOCUMENT CONTROL SETTINGS ENDS >>>>>>>>>>>>>>>>>>>>>
\begin{document}
% Generate Front Cover
\include {Front_Cover/frontcover}
% ==================== Removing Blank Pages Starts ===========================
\makeatletter\@openrightfalse
% Page Number Style Settings
\include {PageNumberSettings/pagenosettings}
% Set Numbering Style = Roman (for TOC)
\pagenumbering{Roman}
% ####################### Table of Contents #############################
% Generate Table of Contents
\include {TableofContents/tableofcontents}
% ####################### Table of Contents #############################
% Set Numbering Style = Arabic (for rest of the contents of this book)
\pagenumbering{arabic}
% ####################### Chapters #############################
% Chapter Layout Settings
\include {Chapters/Settings/chaptersettings}
% Chapters Content
% \include cannot be nested, use \input instead
% Use this file to control the Relative Order of Chapters in this Book
\input {Chapters/Settings/chapterlist}
% ####################### Chapters #############################
% ####################### Bibliography #############################
% Bibliography Layout Settings
\include {Bibliography/bibliosettings}
% Bibliography Content
\include {Bibliography/biblio}
% ####################### Bibliography #############################
\@openrighttrue\makeatother
% xxxxxxxxxxxxxxxx Removing Blank Pages Ends xxxxxxxxxxxxxxxxxxxxxxxxx
% Print the Index
\pagestyle{empty}
\renewcommand\biblioillustration {Images/compass1}
\printindex
\end{document}
My Document Style is as follows:
Front Cover
Blank Page
/* Roman Numbering Start */
Table of Contents
/* Roman Numbering Ends */
/* Arabic Numbering Starts */
/* I am including content from different files */
Contents
Index
Packages included for Index:
\usepackage{makeidx}
\usepackage[bookmarks]{hyperref}
Problem:
Suppose Index Entry is: Index_Entry, 2 (This Page no. is the Arabic Style Page No)
On Clicking 2, I am going to the 2nd page of the Document (The Blank Page after cover page), not to (Arabic Style Numbered) Page no.2.
Please help me resolve this problem.
\frontmatterright after\begin{document}, then all the pages until you explicitly change the settings will be numbered with roman numerals (whether or not the number prints). the settings can be changed with \mainmatter (which restarts numbering at 1 as well as changes the numbering style to arabic) or by some other method of your own. – barbara beeton Aug 26 '12 at 19:43\includesin your posted code, so your given code is not running for us. That could also show us, wheather you are usingfrontmatteretc even if you did not tell us but can be very important. I'm shure you left important things in your given code. BTW: Why do you\includea table of contence? – Kurt Aug 26 '12 at 19:58