General ⇒ vertical center titlepage?
vertical center titlepage?
Can I vertically center the titlepage?
I havent used any custom titlepage, just using \maketitle.
//Hub
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
vertical center titlepage?
Code: Select all
\documentclass[11pt,a4paper]{report}
\usepackage[T1]{fontenc}
\usepackage[latin1]{inputenc}
%\usepackage[centering,includeheadfoot,margin=2cm]{geometry}
\usepackage{txfonts}
\parindent0em
\author{Author}
\title{Title}
\date{\today}
\begin{document}
\maketitle
\end{document}
Best regards and welcome to the board
Thorsten¹
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
Re: vertical center titlepage?
I had article as class, not report. When i changed to report its nice and centered.
But now the chapter numbering starts at 0!
Need to change the sections to chapter and so on...
Is there a way to get the same titlepage as in report for article?
- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
vertical center titlepage?
This is information you should have given right at the beginning of your request.hub wrote:[...] I had article as class, not report. [...]
Of course you can get a title page for the article class. Modify my MWE as follows.hub wrote:[...] Is there a way to get the same titlepage as in report for article?
Code: Select all
\documentclass[11pt,a4paper,titlepage]{article}
\usepackage[T1]{fontenc}
\usepackage[latin1]{inputenc}
%\usepackage[centering,includeheadfoot,margin=2cm]{geometry}
\usepackage{txfonts}
\parindent0em
\author{Author}
\title{Title}
\date{\today}
\begin{document}
\maketitle
\end{document}
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
Re: vertical center titlepage?

Should have been more clear.
Will be that in the future!
Thx for the help!