Set up twopage offset for different pages manually
Currently writing my thesis using the twoside report document class which pushes everything on an odd page to the left and everything on an even page to the right.
I have set up my document in a way which requires this to be tuned slightly.
My title page needs centering - which was easy enough using the newgeometry{centering} command.
I then need the following pages to all be pushed to the right regardless of page number since I have abstract (page i) followed by a blank page then table of contents (page ii) etc. These all need to be pushed to the right as if they had even page numbers.
Then my main body of text restarts numbering at 1 (after another blank page), however it just so happens that because of the number of pages leading up to the start of the document that this should be pushed to the right (as if it was an even numbered page), following this they need to alternate like normal.
This is how the document is set up currently:
documentclass[12pt,twoside]{report}
usepackage[utf8]{inputenc}
usepackage[a4paper,width=150mm,top=25mm,bottom=25mm]{geometry}
usepackage{afterpage}
newcommandblankpage{
null
thispagestyle{empty}
addtocounter{page}{-1}
newpage}
begin{document}
newgeometry{centering}
Title page
afterpage{blankpage}
restoregeometry
raggedbottom
pagenumbering{roman}
chapter*{Abstract}
Abstract
setcounter{page}{1}
addcontentsline{toc}{chapter}{Abstract}
afterpage{blankpage}
%%%%%%%%%%% ADDING CONTENTS PAGE
tableofcontents
afterpage{blankpage}
%%%%%%%%%%
chapter*{List of Abbreviations}
afterpage{blankpage}
setcounter{page}{3}
addcontentsline{toc}{chapter}{List of Abbreviations}
Abbreviations
%%%%%%%%%
chapter*{Acknowledgements}
afterpage{blankpage}
addcontentsline{toc}{chapter}{Acknowledgements}
Thanks
%%%%%%%%
chapter{Intro}
pagenumbering{arabic}
setcounter{page}{1}
chapter{2}
Chapter 2
end{document}
geometry report page binding
|
show 2 more comments
Currently writing my thesis using the twoside report document class which pushes everything on an odd page to the left and everything on an even page to the right.
I have set up my document in a way which requires this to be tuned slightly.
My title page needs centering - which was easy enough using the newgeometry{centering} command.
I then need the following pages to all be pushed to the right regardless of page number since I have abstract (page i) followed by a blank page then table of contents (page ii) etc. These all need to be pushed to the right as if they had even page numbers.
Then my main body of text restarts numbering at 1 (after another blank page), however it just so happens that because of the number of pages leading up to the start of the document that this should be pushed to the right (as if it was an even numbered page), following this they need to alternate like normal.
This is how the document is set up currently:
documentclass[12pt,twoside]{report}
usepackage[utf8]{inputenc}
usepackage[a4paper,width=150mm,top=25mm,bottom=25mm]{geometry}
usepackage{afterpage}
newcommandblankpage{
null
thispagestyle{empty}
addtocounter{page}{-1}
newpage}
begin{document}
newgeometry{centering}
Title page
afterpage{blankpage}
restoregeometry
raggedbottom
pagenumbering{roman}
chapter*{Abstract}
Abstract
setcounter{page}{1}
addcontentsline{toc}{chapter}{Abstract}
afterpage{blankpage}
%%%%%%%%%%% ADDING CONTENTS PAGE
tableofcontents
afterpage{blankpage}
%%%%%%%%%%
chapter*{List of Abbreviations}
afterpage{blankpage}
setcounter{page}{3}
addcontentsline{toc}{chapter}{List of Abbreviations}
Abbreviations
%%%%%%%%%
chapter*{Acknowledgements}
afterpage{blankpage}
addcontentsline{toc}{chapter}{Acknowledgements}
Thanks
%%%%%%%%
chapter{Intro}
pagenumbering{arabic}
setcounter{page}{1}
chapter{2}
Chapter 2
end{document}
geometry report page binding
If I undestand you correctly, the first page of your main text is numbered with 1 (odd) but actually is because of the amount of pages before it, an even (left) page. I as a reader would be confused by this as I would aways expect an odd number on a right page and an even number on a left page. If you want your thesis o be printed double-page, I would add an empty page to the backsied of the titlepage. This way page number 1 should be a right page instead of a left one.
– leandriis
Mar 12 at 20:01
Apart from my previous comment, please make a compilable minimal working example (MWE) including the documentclass and all relevant packages. We also don't have access to all your inputed files. So please replace them by some dummy text.
– leandriis
Mar 12 at 20:03
@leandriis Yeah so thats kind of it, its going to be printed back to back, so my first pages Title -> Acknowledgements will be on its own with blank paper on the back, therefore appears on the right hand side if you were reading like a book - therefore all of these needs to be pushed to the right to allow space in the left margin for binding. Page 1 on the main text also starts on the right hand side as if it was a book, but because it has an odd page number it is pushed to the left and not the right.
– khazoona
Mar 12 at 20:31
@leandriis I will edit the original post with a MWE, albeit not that minimal but it includes everything I think you will need.
– khazoona
Mar 12 at 20:32
Thank you for your update. So, if I interpret this corretly, you expect the inner margin (the one that is near the spine od the book) to be wieder than the outer margin. Regarding this, you might be interested in the following: Illogical twoside margins
– leandriis
Mar 12 at 20:36
|
show 2 more comments
Currently writing my thesis using the twoside report document class which pushes everything on an odd page to the left and everything on an even page to the right.
I have set up my document in a way which requires this to be tuned slightly.
My title page needs centering - which was easy enough using the newgeometry{centering} command.
I then need the following pages to all be pushed to the right regardless of page number since I have abstract (page i) followed by a blank page then table of contents (page ii) etc. These all need to be pushed to the right as if they had even page numbers.
Then my main body of text restarts numbering at 1 (after another blank page), however it just so happens that because of the number of pages leading up to the start of the document that this should be pushed to the right (as if it was an even numbered page), following this they need to alternate like normal.
This is how the document is set up currently:
documentclass[12pt,twoside]{report}
usepackage[utf8]{inputenc}
usepackage[a4paper,width=150mm,top=25mm,bottom=25mm]{geometry}
usepackage{afterpage}
newcommandblankpage{
null
thispagestyle{empty}
addtocounter{page}{-1}
newpage}
begin{document}
newgeometry{centering}
Title page
afterpage{blankpage}
restoregeometry
raggedbottom
pagenumbering{roman}
chapter*{Abstract}
Abstract
setcounter{page}{1}
addcontentsline{toc}{chapter}{Abstract}
afterpage{blankpage}
%%%%%%%%%%% ADDING CONTENTS PAGE
tableofcontents
afterpage{blankpage}
%%%%%%%%%%
chapter*{List of Abbreviations}
afterpage{blankpage}
setcounter{page}{3}
addcontentsline{toc}{chapter}{List of Abbreviations}
Abbreviations
%%%%%%%%%
chapter*{Acknowledgements}
afterpage{blankpage}
addcontentsline{toc}{chapter}{Acknowledgements}
Thanks
%%%%%%%%
chapter{Intro}
pagenumbering{arabic}
setcounter{page}{1}
chapter{2}
Chapter 2
end{document}
geometry report page binding
Currently writing my thesis using the twoside report document class which pushes everything on an odd page to the left and everything on an even page to the right.
I have set up my document in a way which requires this to be tuned slightly.
My title page needs centering - which was easy enough using the newgeometry{centering} command.
I then need the following pages to all be pushed to the right regardless of page number since I have abstract (page i) followed by a blank page then table of contents (page ii) etc. These all need to be pushed to the right as if they had even page numbers.
Then my main body of text restarts numbering at 1 (after another blank page), however it just so happens that because of the number of pages leading up to the start of the document that this should be pushed to the right (as if it was an even numbered page), following this they need to alternate like normal.
This is how the document is set up currently:
documentclass[12pt,twoside]{report}
usepackage[utf8]{inputenc}
usepackage[a4paper,width=150mm,top=25mm,bottom=25mm]{geometry}
usepackage{afterpage}
newcommandblankpage{
null
thispagestyle{empty}
addtocounter{page}{-1}
newpage}
begin{document}
newgeometry{centering}
Title page
afterpage{blankpage}
restoregeometry
raggedbottom
pagenumbering{roman}
chapter*{Abstract}
Abstract
setcounter{page}{1}
addcontentsline{toc}{chapter}{Abstract}
afterpage{blankpage}
%%%%%%%%%%% ADDING CONTENTS PAGE
tableofcontents
afterpage{blankpage}
%%%%%%%%%%
chapter*{List of Abbreviations}
afterpage{blankpage}
setcounter{page}{3}
addcontentsline{toc}{chapter}{List of Abbreviations}
Abbreviations
%%%%%%%%%
chapter*{Acknowledgements}
afterpage{blankpage}
addcontentsline{toc}{chapter}{Acknowledgements}
Thanks
%%%%%%%%
chapter{Intro}
pagenumbering{arabic}
setcounter{page}{1}
chapter{2}
Chapter 2
end{document}
geometry report page binding
geometry report page binding
edited Mar 12 at 20:33
khazoona
asked Mar 12 at 19:52
khazoonakhazoona
11
11
If I undestand you correctly, the first page of your main text is numbered with 1 (odd) but actually is because of the amount of pages before it, an even (left) page. I as a reader would be confused by this as I would aways expect an odd number on a right page and an even number on a left page. If you want your thesis o be printed double-page, I would add an empty page to the backsied of the titlepage. This way page number 1 should be a right page instead of a left one.
– leandriis
Mar 12 at 20:01
Apart from my previous comment, please make a compilable minimal working example (MWE) including the documentclass and all relevant packages. We also don't have access to all your inputed files. So please replace them by some dummy text.
– leandriis
Mar 12 at 20:03
@leandriis Yeah so thats kind of it, its going to be printed back to back, so my first pages Title -> Acknowledgements will be on its own with blank paper on the back, therefore appears on the right hand side if you were reading like a book - therefore all of these needs to be pushed to the right to allow space in the left margin for binding. Page 1 on the main text also starts on the right hand side as if it was a book, but because it has an odd page number it is pushed to the left and not the right.
– khazoona
Mar 12 at 20:31
@leandriis I will edit the original post with a MWE, albeit not that minimal but it includes everything I think you will need.
– khazoona
Mar 12 at 20:32
Thank you for your update. So, if I interpret this corretly, you expect the inner margin (the one that is near the spine od the book) to be wieder than the outer margin. Regarding this, you might be interested in the following: Illogical twoside margins
– leandriis
Mar 12 at 20:36
|
show 2 more comments
If I undestand you correctly, the first page of your main text is numbered with 1 (odd) but actually is because of the amount of pages before it, an even (left) page. I as a reader would be confused by this as I would aways expect an odd number on a right page and an even number on a left page. If you want your thesis o be printed double-page, I would add an empty page to the backsied of the titlepage. This way page number 1 should be a right page instead of a left one.
– leandriis
Mar 12 at 20:01
Apart from my previous comment, please make a compilable minimal working example (MWE) including the documentclass and all relevant packages. We also don't have access to all your inputed files. So please replace them by some dummy text.
– leandriis
Mar 12 at 20:03
@leandriis Yeah so thats kind of it, its going to be printed back to back, so my first pages Title -> Acknowledgements will be on its own with blank paper on the back, therefore appears on the right hand side if you were reading like a book - therefore all of these needs to be pushed to the right to allow space in the left margin for binding. Page 1 on the main text also starts on the right hand side as if it was a book, but because it has an odd page number it is pushed to the left and not the right.
– khazoona
Mar 12 at 20:31
@leandriis I will edit the original post with a MWE, albeit not that minimal but it includes everything I think you will need.
– khazoona
Mar 12 at 20:32
Thank you for your update. So, if I interpret this corretly, you expect the inner margin (the one that is near the spine od the book) to be wieder than the outer margin. Regarding this, you might be interested in the following: Illogical twoside margins
– leandriis
Mar 12 at 20:36
If I undestand you correctly, the first page of your main text is numbered with 1 (odd) but actually is because of the amount of pages before it, an even (left) page. I as a reader would be confused by this as I would aways expect an odd number on a right page and an even number on a left page. If you want your thesis o be printed double-page, I would add an empty page to the backsied of the titlepage. This way page number 1 should be a right page instead of a left one.
– leandriis
Mar 12 at 20:01
If I undestand you correctly, the first page of your main text is numbered with 1 (odd) but actually is because of the amount of pages before it, an even (left) page. I as a reader would be confused by this as I would aways expect an odd number on a right page and an even number on a left page. If you want your thesis o be printed double-page, I would add an empty page to the backsied of the titlepage. This way page number 1 should be a right page instead of a left one.
– leandriis
Mar 12 at 20:01
Apart from my previous comment, please make a compilable minimal working example (MWE) including the documentclass and all relevant packages. We also don't have access to all your inputed files. So please replace them by some dummy text.
– leandriis
Mar 12 at 20:03
Apart from my previous comment, please make a compilable minimal working example (MWE) including the documentclass and all relevant packages. We also don't have access to all your inputed files. So please replace them by some dummy text.
– leandriis
Mar 12 at 20:03
@leandriis Yeah so thats kind of it, its going to be printed back to back, so my first pages Title -> Acknowledgements will be on its own with blank paper on the back, therefore appears on the right hand side if you were reading like a book - therefore all of these needs to be pushed to the right to allow space in the left margin for binding. Page 1 on the main text also starts on the right hand side as if it was a book, but because it has an odd page number it is pushed to the left and not the right.
– khazoona
Mar 12 at 20:31
@leandriis Yeah so thats kind of it, its going to be printed back to back, so my first pages Title -> Acknowledgements will be on its own with blank paper on the back, therefore appears on the right hand side if you were reading like a book - therefore all of these needs to be pushed to the right to allow space in the left margin for binding. Page 1 on the main text also starts on the right hand side as if it was a book, but because it has an odd page number it is pushed to the left and not the right.
– khazoona
Mar 12 at 20:31
@leandriis I will edit the original post with a MWE, albeit not that minimal but it includes everything I think you will need.
– khazoona
Mar 12 at 20:32
@leandriis I will edit the original post with a MWE, albeit not that minimal but it includes everything I think you will need.
– khazoona
Mar 12 at 20:32
Thank you for your update. So, if I interpret this corretly, you expect the inner margin (the one that is near the spine od the book) to be wieder than the outer margin. Regarding this, you might be interested in the following: Illogical twoside margins
– leandriis
Mar 12 at 20:36
Thank you for your update. So, if I interpret this corretly, you expect the inner margin (the one that is near the spine od the book) to be wieder than the outer margin. Regarding this, you might be interested in the following: Illogical twoside margins
– leandriis
Mar 12 at 20:36
|
show 2 more comments
0
active
oldest
votes
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "85"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f479163%2fset-up-twopage-offset-for-different-pages-manually%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to TeX - LaTeX Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f479163%2fset-up-twopage-offset-for-different-pages-manually%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
If I undestand you correctly, the first page of your main text is numbered with 1 (odd) but actually is because of the amount of pages before it, an even (left) page. I as a reader would be confused by this as I would aways expect an odd number on a right page and an even number on a left page. If you want your thesis o be printed double-page, I would add an empty page to the backsied of the titlepage. This way page number 1 should be a right page instead of a left one.
– leandriis
Mar 12 at 20:01
Apart from my previous comment, please make a compilable minimal working example (MWE) including the documentclass and all relevant packages. We also don't have access to all your inputed files. So please replace them by some dummy text.
– leandriis
Mar 12 at 20:03
@leandriis Yeah so thats kind of it, its going to be printed back to back, so my first pages Title -> Acknowledgements will be on its own with blank paper on the back, therefore appears on the right hand side if you were reading like a book - therefore all of these needs to be pushed to the right to allow space in the left margin for binding. Page 1 on the main text also starts on the right hand side as if it was a book, but because it has an odd page number it is pushed to the left and not the right.
– khazoona
Mar 12 at 20:31
@leandriis I will edit the original post with a MWE, albeit not that minimal but it includes everything I think you will need.
– khazoona
Mar 12 at 20:32
Thank you for your update. So, if I interpret this corretly, you expect the inner margin (the one that is near the spine od the book) to be wieder than the outer margin. Regarding this, you might be interested in the following: Illogical twoside margins
– leandriis
Mar 12 at 20:36