Page Layouttitlepage models

Information and discussion about page layout specific issues (e.g. header and footer lines, page formats, page numbers).
NELLLY
Posts: 113
Joined: Thu Nov 26, 2009 2:21 am

titlepage models

Post by NELLLY »

Hi
This is the first time I'm preparing the title page of my report. Is there any package which offers different styles of the titlepage?
Thanks.

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

titlepage models

Post by localghost »

The titlepages document.


Best regards
Thorsten
NELLLY
Posts: 113
Joined: Thu Nov 26, 2009 2:21 am

Re: titlepage models

Post by NELLLY »

Thanks. But I didn'y know how to get the fontsite 500 CD collection and also I can't access to http://contrapunctus.net/fs500tex/. What can I do?
User avatar
gmedina
Posts: 2313
Joined: Wed Jul 11, 2007 11:45 pm

Re: titlepage models

Post by gmedina »

Hi,

you can use other fonts already available in your system. However, if you do want to use the fonts mentioned, you can try this link:

http://contrapunctus.net/league/haques/fs500tex/
1,1,2,3,5,8,13,21,34,55,89,144,233,...
NELLLY
Posts: 113
Joined: Thu Nov 26, 2009 2:21 am

Re: titlepage models

Post by NELLLY »

Thanks gmedina. I had access to this page, but I didn't know what steps to do? Please help me because I am pressed for
time.
User avatar
gmedina
Posts: 2313
Joined: Wed Jul 11, 2007 11:45 pm

titlepage models

Post by gmedina »

Well, there's a INSTALL link with detailed instructions (according to the author). I would expect all the information needed for the installation to be there.

I cannot give further advise, since I haven't installed those fonts (nor I will).
1,1,2,3,5,8,13,21,34,55,89,144,233,...
NELLLY
Posts: 113
Joined: Thu Nov 26, 2009 2:21 am

Re: titlepage models

Post by NELLLY »

I am interested by the style \titleTMB What can I do?
User avatar
gmedina
Posts: 2313
Joined: Wed Jul 11, 2007 11:45 pm

titlepage models

Post by gmedina »

You don't need any special font for that style; you can simply copy-paste the command definition in the preamble (changing the information about tile, author, publisher, etc.), adding the declaration of the \drop length and then you can use the \titleTMB in your document:

Code: Select all

\documentclass{article}

\newlength\drop
\newcommand*{\titleTMB}{\begingroup% Three Men in a Boat
\drop=0.1\textheight
\centering
\settowidth{\unitlength}{\LARGE THE BOOK OF CONUNDRUMS}
\vspace*{\baselineskip}
{\large\scshape the author}\\[\baselineskip]
\rule{\unitlength}{1.6pt}\vspace*{-\baselineskip}\vspace*{2pt}
\rule{\unitlength}{0.4pt}\\[\baselineskip]
{\LARGE THE BOOK OF CONUNDRUMS}\\[\baselineskip]
{\itshape puzzles for the mind}\\[0.2\baselineskip]
\rule{\unitlength}{0.4pt}\vspace*{-\baselineskip}\vspace{3.2pt}
\rule{\unitlength}{1.6pt}\\[\baselineskip]
{\large\scshape drawings by the artist}\par
\vfill
{\large\scshape the publisher}\\[\baselineskip]
{\small\scshape year}\par
\vspace*{\drop}
\endgroup}


\begin{document}

\titleTMB

\end{document}
1,1,2,3,5,8,13,21,34,55,89,144,233,...
User avatar
localghost
Site Moderator
Posts: 9202
Joined: Fri Feb 02, 2007 12:06 pm

titlepage models

Post by localghost »

To obtain a real title page (without page number) I would not declare this as a command but embed the relevant parts of the code in a titlepage environment.

Code: Select all

\documentclass[11pt,a4paper,english]{report}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{babel}
\usepackage[includeheadfoot,margin=2cm]{geometry}
\usepackage{blindtext}

\pagestyle{plain}
\newlength\drop

\begin{document}
  \begin{titlepage}
    \drop=0.1\textheight
    \centering
    \settowidth{\unitlength}{\LARGE THE BOOK OF CONUNDRUMS}
    \vspace*{\baselineskip}
    {\large\scshape the author}\\[\baselineskip]
    \rule{\unitlength}{1.6pt}\vspace*{-\baselineskip}\vspace*{2pt}
    \rule{\unitlength}{0.4pt}\\[\baselineskip]
    {\LARGE THE BOOK OF CONUNDRUMS}\\[\baselineskip]
    {\itshape puzzles for the mind}\\[0.2\baselineskip]
    \rule{\unitlength}{0.4pt}\vspace*{-\baselineskip}\vspace{3.2pt}
    \rule{\unitlength}{1.6pt}\\[\baselineskip]
    {\large\scshape drawings by the artist}\par
    \vfill
    {\large\scshape the publisher}\\[\baselineskip]
    {\small\scshape year}\par
    \vspace*{\drop}
  \end{titlepage}

  \blinddocument
\end{document}
This way the actual document will start with page number 1.
NELLLY
Posts: 113
Joined: Thu Nov 26, 2009 2:21 am

Re: titlepage models

Post by NELLLY »

Thanks for your help. How can I insert the title of my report and the name of the authors.
Post Reply