GeneralHow to create desired blank space

LaTeX specific issues not fitting into one of the other forums of this category.
Post Reply
pban92
Posts: 54
Joined: Sat Aug 09, 2008 9:34 am

How to create desired blank space

Post by pban92 »

I am trying to make a single page 'Acknowledgment' with three to four lines. I want the word - Acknowledgment to be centered but 10 cm below from the top of the page. What should be the syntax?

Please help.

Thanks!

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

How to create desired blank space

Post by localghost »

This is quite simple. After the contents of the preceding page you insert the desired vertical space followed by your acknowledgements.

Code: Select all

...
\newpage
\vspace*{8cm}
\begin{center}
  \Large
  Acknowledgements
\end{center}
The thanks to the people and your appreciations are placed here.
...
\newpage
I already took into account that there is a top margin. So there's a little less vertical space than 10cm needed. Moreover, the center environment produces space above and below its contents.


Best regards
Thorsten¹
pban92
Posts: 54
Joined: Sat Aug 09, 2008 9:34 am

Re: How to create desired blank space

Post by pban92 »

You are the man!

Thanks!
Post Reply