Im new to LaTex and this website so sorry if the question were already asked (I tried few solution that I found on the internet but nothing worked). Im simply trying to insert an image in my tittle page which is my first page, but without any sucess.
Thanks, Léa.
\documentclass[a4paper]{report}
\usepackage{graphicx}
\usepackage{caption}
\usepackage{tikz}
\begin{document}
\title{The use of LIDAR data to estimate seed bearing tree density in boreal forest, North Canada.
\\large Dissertation report presented to obtain the MASTER 2 GAED degree
\\large TELENVI Specialization (Remote Sensing/Environment)}
\centering
\includegraphics[width=0.75\linewidth]{forest-4918605_1280.jpg}
\label{fig:enter-label}
\author{Léa}
\date{March - August 2024}
\maketitle
\section{Introduction}
\end{document}
\maketitledoes only print the contents setup using\title,\authorand\date. So you have to put the image in the argument of one of these commands. But because this is a kind of misuage of these commands, I would recommend to design your title page free using atitlepageenvironment, or use an extra packages. See for example https://tex.stackexchange.com/q/85904/277964 or. https://tex.stackexchange.com/q/159104/277964 or https://tex.stackexchange.com/q/13912/277964 etc.. – cabohah Mar 06 '24 at 14:54mwe. – cabohah Mar 06 '24 at 14:56