Graphics, Figures & Tables ⇒ Including diagrams on the title page
Including diagrams on the title page
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
- Stefan Kottwitz
- Site Admin
- Posts: 10335
- Joined: Mon Mar 10, 2008 9:44 pm
Re: Including diagrams on the title page
just use \includegraphics within the titlepage environment or in a titlepage command. Don't use a figure environment.
Stefan
Re: Including diagrams on the title page
Also the \includegraphics command is still in italics as though it is not recognised.
- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
Including diagrams on the title page
Best regards
Thorsten¹
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
Including diagrams on the title page
Code: Select all
\documentclass[a4paper,12pt]{report}
\usepackage{graphicx}
\begin{document}
\begin{titlepage}
\title{Title}
\author{Author}
\maketitle
\includegraphics[width=120mm]{SP_A0821.jpg}
\end{titlepage}
\end{document}
- Stefan Kottwitz
- Site Admin
- Posts: 10335
- Joined: Mon Mar 10, 2008 9:44 pm
Including diagrams on the title page
don't mix \maketitle and the titlepage environment. Here's an example:
Code: Select all
\documentclass[a4paper,12pt]{report}
\usepackage{graphicx}
\begin{document}
\begin{titlepage}
\vspace*{60pt}
\begin{center}%
{\LARGE Title \par}%
\vspace{3em}%
{\large Author \par}
\vspace{1.5em}%
{\large Date \par}%
\vfil
\includegraphics[width=120mm]{SP_A0821.jpg}
\vfil
\end{center}
\end{titlepage}
\end{document}