[Tex/LaTex] How to include a custom titlepage in the document

titles

How can I do title page like this](http://min.us/mchibO5)?

I'm using the mwrep document class.

Or could it be simpler, and it is possible to include a pdf with this title page to pdf generated by LEd?

How can I disable page number on title page?

How can I make title page not count into numbering (next page would have number 1)?

Best Answer

The simplest way to do this is to prepare the title page as a separate PDF file, say with Scribus or LibreOffice or whatever. Then you can simply say

\usepackage{pdfpages} % <-- this goes in the preamble

\begin{document}

\begin{titlepage}
\includepdf{title}
\end{titlepage}
...

if title.pdf is the file you prepared. If you load the emptypage package, the blank pages won't have anything on them.