Is there a simple way of adding a picture to the title page? It always moves to the second page.
Thanks.
Graphics, Figures & Tables ⇒ Including diagrams on the title page
NEW: TikZ book now 40% off at Amazon.com for a short time.

- Stefan Kottwitz
- Site Admin
- Posts: 10345
- Joined: Mon Mar 10, 2008 9:44 pm
Re: Including diagrams on the title page
Hi,
just use \includegraphics within the titlepage environment or in a titlepage command. Don't use a figure environment.
Stefan
just use \includegraphics within the titlepage environment or in a titlepage command. Don't use a figure environment.
Stefan
LaTeX.org admin
Re: Including diagrams on the title page
I've tried that but even when I put it within \begin{titlepage}...\end{titlepage} it still goes to the next page.
Also the \includegraphics command is still in italics as though it is not recognised.
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
Build a minimal working example (MWE) that clearly shows the effect you described.
Best regards
Thorsten¹
Best regards
Thorsten¹
How to make a "Minimal Example"
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
Including diagrams on the title page
Code: Select all
Code, edit and compile here:
\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: 10345
- Joined: Mon Mar 10, 2008 9:44 pm
Including diagrams on the title page
Hi,
don't mix \maketitle and the titlepage environment. Here's an example:
Stefan
don't mix \maketitle and the titlepage environment. Here's an example:
Code: Select all
Code, edit and compile here:
\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}
LaTeX.org admin