Generalvspace before maketitle?

LaTeX specific issues not fitting into one of the other forums of this category.
Post Reply
daviddoria
Posts: 60
Joined: Tue Sep 30, 2008 9:24 pm

vspace before maketitle?

Post by daviddoria »

The maketitle command seems to put the title at the very top of the page. I tried to move it down with:

Code: Select all

\begin{document}

\vspace*{2in}
\title{Project 1}
\author{David Doria}
\maketitle

\newpage 
but it moves it to the top of the next page! Is there a maketitle param that makes it vertically centered? Or another way to make vspace manually like I tried to do here?

Thanks!

Dave

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

vspace before maketitle?

Post by localghost »

Code: Select all

\documentclass[11pt,a4paper,titlepage]{article}
\usepackage[T1]{fontenc}
\usepackage[latin1]{inputenc}
\usepackage[english]{babel}
\usepackage{blindtext}

\title{Project 1}
\author{David Doria}
\date{\today}

\begin{document}
  \maketitle
  \Blinddocument
\newpage 

Best regards
Thorsten¹
daviddoria
Posts: 60
Joined: Tue Sep 30, 2008 9:24 pm

Re: vspace before maketitle?

Post by daviddoria »

ah great, to anyone else who sees this - the difference was the addition of the option [titlepage] in the \documentclass line

Thanks!
User avatar
localghost
Site Moderator
Posts: 9202
Joined: Fri Feb 02, 2007 12:06 pm

vspace before maketitle?

Post by localghost »

daviddoria wrote:[...] to anyone else who sees this - the difference was the addition of the option [titlepage] in the \documentclass line [...]
Can be read in every basic LaTeX documentation such as lshort.
Post Reply