0
votes
0answers
44 views

removing an unwanted page between two chapters

What could be the reason? Somehow a blank page with some random number gets inserted between two chapters. \flushbottom \include{chapter1} \flushbottom ...
1
vote
1answer
58 views

Get the empty page before a new chapter in ConTeXt?

When starting new chapters on right-hand side, it would better make the previous page empty (no footer and header). This can be done by defining a new pagebreak and setup head, ...
4
votes
2answers
266 views

How to make front-matter page number non-bold in ToC?

Shown in the following pic: It seems the Roman page number for front-matter look too dark in ToC, so how to make it as normal font but not change the bold Arabic number for chapters?
4
votes
1answer
188 views

Page numbers only appear on pages where a chapter starts

I have a problem in the number of the pages in my report the problem is that the number of the page appears in the beginning of the chapter but in the next page it is absent. This is a part of my ...
2
votes
1answer
238 views

No page number displayed after applying header and footer

After applying a new header and footer, no page number is displayed in my document; only the updated header and footer. And there is another problem: there is no header or footer displayed on chapter ...
0
votes
0answers
229 views

Wrong page numbering style and chapter title [closed]

I have just finished my thesis, which is ready for defence and print! It consists of tex subfiles which are added to a main file. The thesis is written in Greek. I used roman numbering for the first ...
5
votes
2answers
323 views

Problem‎ with redefining \chapter{…} command‎

I want to change the definition of \chapter[...]{...} ‎to‎ \chapter[...]{...‎}‎‎‎\thispagestyle{empty}‎‎.‎ To do this, I'm using the code ‎below:‎ \documentclass{book} \let\origchapter\chapter ...
4
votes
1answer
153 views

Modifying the location of page number on the first page of chapter to fit within height

I am working on writing my masters thesis, for which the layout requirements are: 1.5 inch margin on left, 1 inch on all other side Page number on top right on every page, except for first page of ...
1
vote
1answer
365 views

How to change page numbering and section numbering?

I am pretty new to LaTeX. Right now I have this: \documentclass[11pt]{scrbook} \usepackage[a4paper,left=2.5cm,right=2.5cm,top=2.5cm,bottom= 3.2cm]{geometry} % % % \usepackage[pdftex]{graphicx} ...
4
votes
1answer
271 views

Why are pagenumbers centered with \pagestyle{headings} on \chapter{}'s first pages?

I'm using documentclass report with options twoside and openright. The pagestyle is headings. This is a minimal working example: \documentclass[twoside,openright]{report} \usepackage{blindtext} ...
7
votes
1answer
239 views

Issue with chapter numbers in page numbers

I am writing my thesis and using a template given by my university. To get the chapter numbers in the page number, I use the following commands: \@addtoreset{page}{chapter} ...
4
votes
1answer
69 views

How can I get a page number on the last page of a chapter with the mwrep class?

\documentclass[12pt,a4paper]{mwrep} \begin{document} \chapter{Chapter 1} Text \pagebreak Text \pagebreak Text \chapter{Chapter 2} Text \end{document} This does not generate page number on last ...
7
votes
5answers
532 views

\pagestyle{empty} doesn't work on first page of new chapter

I have a problem with page numbering in LaTeX. I don't want any page number in my document so I used \pagestyle{empty} but every time when I start a new chapter I get a page number on the bottom ...
2
votes
1answer
1k views

How can I redefine the base font size and change the size of the page number on chapter pages?

I've got a problem when editing a TeX file. I've changed \normalsize to 20pt by \newcommand{\mysize}{\fontsize{20pt}{\baselinestretch}\selectfont} \renewcommand{\normalsize}{\mysize} and this ...