Page Layout ⇒ White space
-
- Posts: 8
- Joined: Wed Jan 21, 2009 1:24 pm
White space
I would like to make a page with only the title of the chapter that comes after. So it's like a title-page, with only "Deel I Literatuurstudie" on it.
The problem is, I would like to have this in the middle of my page, but it appears everytime at the top. I tried with \vspace{} but it isn't working...
How can I put this right?
I tried it like this:
\begin{titlepage}
\begin{center}
\fontseries{bx}
\fontsize{30pt}{21pt}
\selectfont
\textsc{Deel I \\ Literatuurstudie}\\
\end{center}
\thispagestyle{empty}
\end{titlepage}
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
White space
Code: Select all
\part{Literatuurstudie}
Best regards
Thorsten
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
-
- Posts: 8
- Joined: Wed Jan 21, 2009 1:24 pm
Re: White space
In my mean document there is:
\markright{Literatuurstudie}
\input{Literatuurstudie2.tex}
\pagebreak
And in the document Literatuurstudie2.tex:
\addcontentsline{toc}{part}{Literatuurstudie}
\part*{Literatuurstudie}
So how can I make an extra titlepage than..?
Thanks for answering so quickly!
Lieselotter
- Stefan Kottwitz
- Site Admin
- Posts: 10330
- Joined: Mon Mar 10, 2008 9:44 pm
White space
\vspace doesn't show an effect at the beginning of the page. Use the starred form \vspace*. You could also use \vspace*{\fill} before and after a title to get it vertically centered.lieselotter wrote: The problem is, I would like to have this in the middle of my page, but it appears everytime at the top. I tried with \vspace{} but it isn't working...
Stefan
-
- Posts: 8
- Joined: Wed Jan 21, 2009 1:24 pm
Re: White space
I tried both and they are working very well! Thanks for the answer!
Greets,
Lieselotter