Page Layout ⇒ titlepage models
titlepage models
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.
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
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
Re: titlepage models
Re: titlepage models
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/
Re: titlepage models
time.
titlepage models
I cannot give further advise, since I haven't installed those fonts (nor I will).
Re: titlepage models
titlepage models
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}
- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
titlepage models
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}
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10