Text Formatting ⇒ Blank Page after Title
Blank Page after Title
how do i do if i want a blank page after title for example(in article class not in report).
Last edited by jafarHH on Tue Jul 26, 2011 8:48 pm, edited 1 time in total.
NEW: TikZ book now 40% off at Amazon.com for a short time.

- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
Blank Page after Title
How to make a "Minimal Example"
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
Blank Page after Title
Code: Select all
\documentclass[a4paper,12pt]{report}
\usepackage{pifont}
\usepackage{graphicx}
\begin{document}
\title{\textbf{Deterministic and Probabilistic Model for Radionuclide Transport in Geologic Waste Repository}}
\author{Najib Harari}
\date{2011, July 19}
\maketitle
text n other stuff..
\end{document}
- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
Blank Page after Title
Every basic LaTeX documentation suggests the »titlepage« option for the document class.
The blindtext package is not part of the solution. It has only been used to create dummy text. For further customization of the title you can use a package like titling.
Code: Select all
\documentclass[12pt,a4paper,titlepage,english]{article}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{babel}
\usepackage{blindtext}
\title{\textbf{Deterministic and Probabilistic Model for Radionuclide Transport in Geologic Waste Repository}}
\author{Najib Harari}
\date{2011, July 19}
\begin{document}
\maketitle
\begin{abstract}
\blindtext
\end{abstract}
\blinddocument
\end{document}
How to make a "Minimal Example"
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
- Stefan Kottwitz
- Site Admin
- Posts: 10345
- Joined: Mon Mar 10, 2008 9:44 pm
Blank Page after Title
Hi,
you could use the titlepage option:
Stefan
you could use the titlepage option:
Code: Select all
\documentclass[a4paper,12pt,titlepage]{article}
LaTeX.org admin
Blank Page after Title
Thanks guys that really helped,
and BTW i'm gettin an error message saying:
what is this
and BTW i'm gettin an error message saying:
Code: Select all
incomplete \iffalse all text was ignored after line 64.
- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
Re: Blank Page after Title
An error message without the producing code is absolutely useless. You've got the corresponding line number so you should be able to extract the critical part of the code and put it into a minimal example.
How to make a "Minimal Example"
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
Re: Blank Page after Title
No problem i managed to solve it, don't really know how there just was some errors like [ instead of {.
but now everything is fine.
Thanks anyway
but now everything is fine.
Thanks anyway