Graphics, Figures & Tables ⇒ Including diagrams on the title page
Including diagrams on the title page
Thanks.
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
- Stefan Kottwitz
- Site Admin
- Posts: 10358
- 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: 10358
- 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}