Theses, Books, Title pages ⇒ Changing page size
-
- Posts: 679
- Joined: Tue Mar 03, 2015 4:01 pm
Changing page size
On the same occasion, what are standard sizes for books in print?
Thanks,
razkupferman
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
Changing page size
Changing the paper size is quite easy in this template, all you need to do is go to main.tex and find this line:
\usepackage[top=3cm,bottom=3cm,left=3.2cm,right=3.2cm,headsep=10pt,a4paper]{geometry} % Page margins
You'll notice that the template currently uses the a4 paper size, in order to change this to something else simply replace
a4paper
with a0paper
, a1paper
, ..., a6paper
, b0paper
, b1paper
, ..., b6paper
, letterpaper
, legalpaper
or executivepaper
. If the size you want causes alignment issues with regards to chapter heads or something else you may need to manually adjust their positions in the structure.tex
file.Good luck!
Cheers,
Vel
-
- Posts: 679
- Joined: Tue Mar 03, 2015 4:01 pm
Re: Changing page size
Raz
-
- Posts: 679
- Joined: Tue Mar 03, 2015 4:01 pm
Changing page size
Code: Select all
\usepackage[layoutsize={7in,10in},
layoutoffset={10mm,5mm},
top=1in,
bottom=0.75in,
inner=1in,
outer=1in,
headsep=10pt,
a4paper,
showcrop]{geometry} % Page margins
Re: Changing page size
Changing page size
I tried
\usepackage[a5paper,top=2cm,bottom=2cm,left = 2.5cm,right=2cm,headsep=7pt]{geometry}
in the structure.tex but still have problem with the margin.
My point is to print it in a p5 format. I couldn't adjust the margin also the parts pages (part one & part two ) ahve a problem.
Can anyone help me to fix this?