Text FormattingText in the centre of the Page (not the line)

Information and discussion about LaTeX's general text formatting features (e.g. bold, italic, enumerations, ...)
Post Reply
ffarr
Posts: 28
Joined: Sat Apr 23, 2011 6:00 pm

Text in the centre of the Page (not the line)

Post by ffarr »

Hello,
how can I put the text in the centre of the page? (not the line, so not: \begin{center} \end{center} )

Thank you!
Last edited by ffarr on Tue May 03, 2011 5:11 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

Text in the centre of the Page (not the line)

Post by localghost »

A very basic structure of a control mechanism could look like this.

Code: Select all

\documentclass[11pt,a4paper]{article}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}

\begin{document}
  First page
  \clearpage
  ~
  \vfill
  Second page with vertically centered text
  \vfill
  ~
  \clearpage
  Third page
\end{document}

Thorsten
ffarr
Posts: 28
Joined: Sat Apr 23, 2011 6:00 pm

Re: Text in the centre of the Page (not the line)

Post by ffarr »

Superb
Post Reply