Hello!
Can I vertically center the titlepage?
I havent used any custom titlepage, just using \maketitle.
//Hub
General ⇒ vertical center titlepage?
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
vertical center titlepage?
To me it looks like the title page contents is centred by default. Consider the following minimal working example (MWE).
If in your case there is no vertical centring, please create another MWE that shows the undesired effect.
Best regards and welcome to the board
Thorsten¹
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¹
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: vertical center titlepage?
Thx for the quick answer!
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?
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}
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: vertical center titlepage?
Ok, my bad! 
Should have been more clear.
Will be that in the future!
Thx for the help!

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