Text FormattingBlank Page after Title

Information and discussion about LaTeX's general text formatting features (e.g. bold, italic, enumerations, ...)
Post Reply
User avatar
jafarHH
Posts: 17
Joined: Tue Jun 28, 2011 2:46 pm

Blank Page after Title

Post by jafarHH »

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.

Recommended reading 2024:

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

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

Post by localghost »

You should clarify by a minimal example how you set up the title in your document.


Thorsten
User avatar
jafarHH
Posts: 17
Joined: Tue Jun 28, 2011 2:46 pm

Blank Page after Title

Post by jafarHH »

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}
I know that i can do that in report class, i mean having title and abstract in separate pages in report class but how do i do that in article class cuz i got problem sectioning in report class, i get 0.1 instead of 1.
User avatar
localghost
Site Moderator
Posts: 9202
Joined: Fri Feb 02, 2007 12:06 pm

Blank Page after Title

Post by localghost »

Every basic LaTeX documentation suggests the »titlepage« option for the document class.

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}
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.
User avatar
Stefan Kottwitz
Site Admin
Posts: 10345
Joined: Mon Mar 10, 2008 9:44 pm

Blank Page after Title

Post by Stefan Kottwitz »

Hi,

you could use the titlepage option:

Code: Select all

\documentclass[a4paper,12pt,titlepage]{article}
Stefan
LaTeX.org admin
User avatar
jafarHH
Posts: 17
Joined: Tue Jun 28, 2011 2:46 pm

Blank Page after Title

Post by jafarHH »

Thanks guys that really helped,
and BTW i'm gettin an error message saying:

Code: Select all

incomplete \iffalse all text was ignored after line 64.
what is this
User avatar
localghost
Site Moderator
Posts: 9202
Joined: Fri Feb 02, 2007 12:06 pm

Re: Blank Page after Title

Post by localghost »

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.
User avatar
jafarHH
Posts: 17
Joined: Tue Jun 28, 2011 2:46 pm

Re: Blank Page after Title

Post by jafarHH »

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
Post Reply