Hi,
So i'm trying to create a custom title page, and I want to place text in various locations of the page, using spacing units such as 1 in, 2 in ... For some reason, this is proving to be more difficult than expected. Anyone have a suggestion on how to do this. Thanks!
Text Formatting ⇒ Place text in center of page
NEW: TikZ book now 40% off at Amazon.com for a short time.

Place text in center of page
Just to give you the idea...
Code: Select all
\documentclass{book}
\begin{document}
\vspace*{1cm}% starred version ensures space applies everywhere; without the star, spaces on certain places will be ignored; remove the star to see the effect
\noindent The top left\hfill The top right
\vfill
\begin{center}
\Huge The center
\end{center}
\noindent\hfill Another centered line\hfill\null% \null is just to get an "invisible" sign so the alignment is applied as expected
\noindent\hfill A \hfill B \hfill C\hfill\null
\vfill\vfill\vspace*{-2cm}
\noindent The bottom
\vspace*{.5cm}
\hspace*{4cm}
\noindent The bottom
\vspace*{.5cm}
\hspace*{9cm}
\noindent The bottom
\end{document}