Text FormattingThesis writing

Information and discussion about LaTeX's general text formatting features (e.g. bold, italic, enumerations, ...)
Post Reply
rishavharsh
Posts: 6
Joined: Sat Jun 20, 2015 2:49 pm

Thesis writing

Post by rishavharsh »

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. I am using "book" class and not any template. Kindly redirect me to the solution if this has already been answered.

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

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

mas
Posts: 226
Joined: Thu Dec 04, 2008 4:39 am

Thesis writing

Post by mas »

rishavharsh 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.
Without letting us know what you have attempted, it is difficult to answer your question. You should always post a Infominimal working example to demonstrate your problems.

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}
Hope that gives you some pointers.

OS: Debian/GNU Linux; LaTeX System : TeXLive; Editor : Vim
rishavharsh
Posts: 6
Joined: Sat Jun 20, 2015 2:49 pm

Re: Thesis writing

Post by rishavharsh »

Thanks mas, i think i was looking for the \vspace* command. Your code helped
Post Reply