General ⇒ vertical center titlepage?
vertical center titlepage?
Can I vertically center the titlepage?
I havent used any custom titlepage, just using \maketitle.
//Hub
NEW: TikZ book now 40% off at Amazon.com for a short time.
And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p
- 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!