Tell me more ×
TeX - LaTeX Stack Exchange is a question and answer site for users of TeX, LaTeX, ConTeXt, and related typesetting systems. It's 100% free, no registration required.

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.

share|improve this question
if you put \frontmatter right 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
Index is setting:Page no 1 = Cover page of document.The Index Hyperlink 'thinks' that Page no.2 = page after coverpage. – Sandeep Singh Aug 26 '12 at 19:49
3  
Can you please make a working minimal example? You have several \includes in your posted code, so your given code is not running for us. That could also show us, wheather you are using frontmatter etc 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 \include a table of contence? – Kurt Aug 26 '12 at 19:58
@Kurt: Thanks for your kind consideration. I will prepare & share a MWE soon. – Sandeep Singh Aug 27 '12 at 10:51
@Sandeep: I'm still waiting for your MWE :-) – Kurt Sep 2 '12 at 21:04

closed as too localized by lockstep, Joseph Wright Sep 22 '12 at 19:24

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.

Browse other questions tagged or ask your own question.