Page Layout ⇒ Set page dimensions
Set page dimensions
Hello, how can I set the page dimensions to 11 cm per 19,5 cm?
Last edited by ffarr on Tue May 10, 2011 11:42 pm, edited 1 time in total.
NEW: TikZ book now 40% off at Amazon.com for a short time.

- Stefan Kottwitz
- Site Admin
- Posts: 10348
- Joined: Mon Mar 10, 2008 9:44 pm
Set page dimensions
Hi ffar,
use the geometry package, such as:
Stefan
use the geometry package, such as:
Code: Select all
\usepackage[papersize={110mm,195mm}]{geometry}
LaTeX.org admin
Set page dimensions
I get plenty of errors.. I post my code:
I put this code to display the name of the chapter in the headre without showing the chapter number.
Any tips?
Thanks
Code: Select all
\documentclass[11pt,a4paper,twoside,italian]{book}
\usepackage[T1]{fontenc}
\usepackage[italian]{babel}
\usepackage[latin1]{inputenc}
\usepackage[%
headheight=14pt,
includehead,
nofoot
]{geometry}
\usepackage[papersize={110mm,195mm}]{geometry}
\usepackage{babel}
\usepackage[raggedright,pagestyles]{titlesec}
\usepackage{blindtext}
\usepackage{color}
\newpagestyle{main}{%
\sethead[\thepage][][\chaptertitle]{\chaptertitle}{}{\thepage}
\headrule
}
\pagestyle{main}
\titleformat{\chapter}{\normalfont\huge\bfseries}{}{0pt}{\Huge}
Any tips?
Thanks
- Stefan Kottwitz
- Site Admin
- Posts: 10348
- Joined: Mon Mar 10, 2008 9:44 pm
Set page dimensions
Now you load geometry twice. You did not tell that you already use geometry.
So, merge the options, such as
or use the command
Stefan
So, merge the options, such as
Code: Select all
\usepackage[%
papersize={110mm,195mm},
headheight=14pt,
includehead,
nofoot
]{geometry}
Code: Select all
\geometry{papersize={110mm,195mm}}
LaTeX.org admin