Page LayoutBlank Front Page

Information and discussion about page layout specific issues (e.g. header and footer lines, page formats, page numbers).
Post Reply
teotjunk
Posts: 18
Joined: Fri Sep 19, 2008 5:28 pm

Blank Front Page

Post by teotjunk »

I am not sure why but I get a blank front page in front of my thesis. Here is my latex code

Code: Select all

\documentclass[12pt]{report}

\usepackage{setspace,graphicx,lscape,amsthm,psfrag,amssymb,enumerate,natbib,epsfig,comment,float}
\usepackage[sumlimits,fleqn]{amsmath}
\restylefloat{table}

\left\centering\relax

\numberwithin{equation}{section} 
\numberwithin{equation}{subsection}
\numberwithin{equation}{subsubsection} 

\begin{document}

\begin{titlepage}

\end{titlepage}
Last edited by localghost on Thu May 10, 2012 9:50 am, edited 1 time in total.

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

localghost
Site Moderator
Posts: 9202
Joined: Fri Feb 02, 2007 12:06 pm

Blank Front Page

Post by localghost »

For an adequate problem description you will have to give a proper minimal example. Check this example for functionality, completeness and minimal content. Make sure that you don't use obsolete packages.

If you don't fill the {titlepage} environment with content, what else do you expect than an empty page?


Thorsten
teotjunk
Posts: 18
Joined: Fri Sep 19, 2008 5:28 pm

Blank Front Page

Post by teotjunk »

Okay this is my title page

Code: Select all

\documentclass[12pt]{report}

\usepackage{setspace,graphicx,lscape,amsthm,psfrag,amssymb,enumerate,natbib,epsfig,comment,float}
\usepackage[sumlimits,fleqn]{amsmath}
\restylefloat{table}

\left\centering\relax

\numberwithin{equation}{section} 
\numberwithin{equation}{subsection}
\numberwithin{equation}{subsubsection} 

\begin{document}

\begin{titlepage}

\LARGE \centerline{\bf Classification of \rm }
\LARGE \centerline{\bf Partially Labeled Data \rm }
\LARGE \centerline{\bf \rm }
\vspace{3em}
\large \centerline{TK}
\vspace{0.5em}
\large \centerline{Department of Mathematics}
\vspace{0.5em}
\large \centerline{University of XXX}
\vspace{2em}
\begin{figure} [h!]
\begin{center}
\includegraphics[width=60mm, height=70mm, angle=0]{} 
\end{center}
\end{figure}
\vspace{2em}
\large \centerline{\emph{A thesis submitted for the degree of Doctor of Philosophy in Statistics}}
\vspace{2em}
\large \centerline{Trinity Term 2012}

%\end{titlepage}

\let\endtitlepage\relax
Last edited by Stefan Kottwitz on Mon May 28, 2012 11:44 am, edited 1 time in total.
User avatar
localghost
Site Moderator
Posts: 9202
Joined: Fri Feb 02, 2007 12:06 pm

Blank Front Page

Post by localghost »

Still not a useful example because it is not compilable as is. Please read my last reply again and follow the links. Perhaps you can explain some things to me.
  • Why \left\centering\relax? Where is the sense in that? Furthermore this won't work due to a syntax error.
  • Why \let\endtitlepage\relax?
Post Reply