Text Formatting ⇒ formatting titlepage
formatting titlepage
I started writing title page for my thesis. When i use \usepackage{fullpage} which i require for other pages, the titlepage looks a bit ugly. is there a way to prevent full page for titlepage and make it work for all other pages. Also one more doubt, i want to write only preface in one page and that too in the center of the page, and rest of the page left empty. is there a way to do this.
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
- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
formatting titlepage
The fullpage package is not recommendable. The geometry package offers structures for easy page setup and its modification within a document. Just refer to its manual.sgp wrote:[...] When i use \usepackage{fullpage} which i require for other pages, the titlepage looks a bit ugly. is there a way to prevent full page for titlepage and make it work for all other pages. [...]
Depending on the used document class, an adapted abstract environment should do.sgp wrote:[...] Also one more doubt, i want to write only preface in one page and that too in the center of the page, and rest of the page left empty. is there a way to do this.
Best regards
Thorsten
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
Re: formatting titlepage
thanks for the reply. using \begin{abstract} ... \end{abstract} works fine. but its producing a heading named abstract, can you tell me how to remove it.
thanks in advance,
regards,
sgp.
- Stefan Kottwitz
- Site Admin
- Posts: 10334
- Joined: Mon Mar 10, 2008 9:44 pm
Re: formatting titlepage
if you would tell us your document class we could show how to change it. The abstract environment is implemented by the class.
Stefan
Re: formatting titlepage
i am using \documentclass{report}.
- Stefan Kottwitz
- Site Admin
- Posts: 10334
- Joined: Mon Mar 10, 2008 9:44 pm
formatting titlepage
Code: Select all
\begin{quotation}
abstract text
\end{quotation}
Re: formatting titlepage
regards,
sgp.
Re: formatting titlepage
i found out. i used \begin{quote}. it worked. thanks for the reply.
regards,
sgp.
- Stefan Kottwitz
- Site Admin
- Posts: 10334
- Joined: Mon Mar 10, 2008 9:44 pm
formatting titlepage
Code: Select all
\if@titlepage
\newenvironment{abstract}{%
\titlepage
...
{\par\vfil\null\endtitlepage}
\else
\newenvironment{abstract}{%
\if@twocolumn
\section*{\abstractname}%
\else
\small
\begin{center}%
{\bfseries \abstractname\vspace{-.5em}\vspace{\z@}}%
\end{center}%
\quotation
\fi}
{\if@twocolumn\else\endquotation\fi}
\fi
Stefan