Text Formatting ⇒ formatting titlepage
formatting titlepage
Hi all,
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.
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.
Last edited by sgp on Sat Jul 31, 2010 1:55 pm, edited 1 time in total.
NEW: TikZ book now 40% off at Amazon.com for a short time.

- 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
How to make a "Minimal Example"
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
Re: formatting titlepage
hi thorsten,
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.
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: 10348
- Joined: Mon Mar 10, 2008 9:44 pm
Re: formatting titlepage
Hi sgp,
if you would tell us your document class we could show how to change it. The abstract environment is implemented by the class.
Stefan
if you would tell us your document class we could show how to change it. The abstract environment is implemented by the class.
Stefan
LaTeX.org admin
Re: formatting titlepage
hi stefan,
i am using \documentclass{report}.
i am using \documentclass{report}.
- Stefan Kottwitz
- Site Admin
- Posts: 10348
- Joined: Mon Mar 10, 2008 9:44 pm
formatting titlepage
In that case and if you don't use the twocolumn option you could use the quotation environment instead of abstract. \quotation is used internally, have a look if it gives the same output but without the heading.
Stefan
Code: Select all
\begin{quotation}
abstract text
\end{quotation}
LaTeX.org admin
Re: formatting titlepage
@stefan. that solves the problem, but the justification is different. what could be the reason.
regards,
sgp.
regards,
sgp.
Re: formatting titlepage
@stefan
i found out. i used \begin{quote}. it worked. thanks for the reply.
regards,
sgp.
i found out. i used \begin{quote}. it worked. thanks for the reply.
regards,
sgp.
- Stefan Kottwitz
- Site Admin
- Posts: 10348
- Joined: Mon Mar 10, 2008 9:44 pm
formatting titlepage
Interesting, because report uses \quotation. Excerpt rom report.cls:
But quote is fine as well of course.
Stefan
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
LaTeX.org admin