Text Formatting ⇒ Thesis writing
-
- Posts: 6
- Joined: Sat Jun 20, 2015 2:49 pm
Thesis writing
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
Thesis writing
Without letting us know what you have attempted, it is difficult to answer your question. You should always post arishavharsh wrote:I am writing my thesis but unable to format the Acknowledgement, Declaration, Abstract pages having heading at the center with some empty vertical space on top.

As a probable answer,you can center the text within the
{center}
environment. You can use \vspace
to provide vertical space in the text. Have you tried them? Take a look at the snippet below:
Code: Select all
\documentclass{book}
\begin{document}
\vspace*{50mm}
\begin{center}
\bfseries Acknowledgement
\end{center}
Blah, \ldots
\end{document}
OS: Debian/GNU Linux; LaTeX System : TeXLive; Editor : Vim
-
- Posts: 6
- Joined: Sat Jun 20, 2015 2:49 pm