Page LayoutBlank Pages Problem

Information and discussion about page layout specific issues (e.g. header and footer lines, page formats, page numbers).
Post Reply
S_David
Posts: 45
Joined: Tue Jul 07, 2009 4:16 am

Blank Pages Problem

Post by S_David »

Hello,

In the simple Latex code below, the output is two pages seperated by an unwanted blank page:

Code: Select all

\documentclass[a4paper,12pt]{memoir}
\begin{document}
\chapter{One}
\chapter{Two}
\end{document}
How can I remove this blank page between different chapters?

Thanks in advance

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

User avatar
gmedina
Posts: 2313
Joined: Wed Jul 11, 2007 11:45 pm

Blank Pages Problem

Post by gmedina »

Hi,

use the openany class option:

Code: Select all

\documentclass[a4paper,12pt,openany]{memoir}
\begin{document}
\chapter{One}
\chapter{Two}
\end{document}
1,1,2,3,5,8,13,21,34,55,89,144,233,...
S_David
Posts: 45
Joined: Tue Jul 07, 2009 4:16 am

Blank Pages Problem

Post by S_David »

gmedina wrote:Hi,

use the openany class option:

Code: Select all

\documentclass[a4paper,12pt,openany]{memoir}
\begin{document}
\chapter{One}
\chapter{Two}
\end{document}
Thanks gmedina, simple but efficient solution.

Best regards
Post Reply