Page Layout ⇒ Centering Abstract in the book
-
- Posts: 41
- Joined: Sun Apr 08, 2012 4:31 pm
Centering Abstract in the book
I'm using the document class book. I want to write the Abstract, Ack and Dedication in the center of the page. How can I do that?
Thanks
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
- Johannes_B
- Site Moderator
- Posts: 4182
- Joined: Thu Nov 01, 2012 4:08 pm
Centering Abstract in the book
Code: Select all
\documentclass{book}
\begin{document}
\vspace*{\fill}
Your abstract here
\vfill\cleardoublepage
\vspace*{\fill}
Your acknowledgements here
\vfill\cleardoublepage
\end{document}
-
- Posts: 41
- Joined: Sun Apr 08, 2012 4:31 pm
Re: Centering Abstract in the book
Thanks for this info. I seems to be OK, but one problem is that the text is not at the top of the page. it is in the center of the left and right side, but I don't want the vertical space.
Thanks
- Johannes_B
- Site Moderator
- Posts: 4182
- Joined: Thu Nov 01, 2012 4:08 pm
Centering Abstract in the book
\begin{center} Abstrct \end{center}
would be too obvious.