Theses, Books, Title pages ⇒ The Legrand Orange Book: change the size of the page to a5
The Legrand Orange Book: change the size of the page to a5
\usepackage[a5paper,top=2cm,bottom=2cm,left = 2.5cm,right=2cm,headsep=7pt]{geometry}
I also tried this
\usepackage[top=3cm,bottom=3cm,left=1.5cm,right=1.5cm,headsep=7pt,a5paper]{geometry}
in the structure.tex but still have problem with the margin.
Can anyone help me to fix this?
Also, how to make the font of all book 12pt instead of 11pt ?
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
The Legrand Orange Book: change the size of the page to a5
- Stefan Kottwitz
- Site Admin
- Posts: 10360
- Joined: Mon Mar 10, 2008 9:44 pm
The Legrand Orange Book: change the size of the page to a5
On that site, Circumscribe suggested a solution. Simply put this code
Code: Select all
\makeatletter
\renewcommand{\@seccntformat}[1]{%
\textcolor{ocre}{\csname the#1\endcsname}\hspace{1em}}
\makeatother
\input{structure.tex}
, otherwise it won't work. And it should be before \begin{document}
.Stefan