0

I have been trying to figure out how to include a picture in my title page. I have used multiple suggestions found in forums but somehow none of them seems to work. The picture is either included on a separate page or is not included at all. I would like the picture to be included underneath the date (please see the code below).

Hopefully, someone of you will be able to help me.

Thanks a lot already in advance.

So this is my Latex code:

\title{Bildungshub}

\author{Langhoff Charly (1172857) 

\and Pokrivka Helena (01460370)}

\date{Klagenfurt, am \today{}}

%%%%Here is where I would like my picture to be inserted

\begin{document}

\thispagestyle{empty}

\pagenumbering{roman} %% small roman page numbers

 \maketitle
Skillmon
  • 60,462

1 Answers1

1

Here is a code, with the titling package, which makes customising the maketitle command easy:

\documentclass{report}
\usepackage[utf8]{inputenc}
\usepackage{graphicx}
 \usepackage{tabularx}
\usepackage{titling}
\usepackage{amsmath}

\setlength\droptitle{-3cm}
\pretitle{\begin{center}\LARGE\bfseries}
\title{Bildungshub}
\posttitle{\end{center}\vskip 8ex}
 \preauthor{\begin{center}
\large%
\begin{tabular}[t]{l}}
\author{Langhoff Charly (1172857)\\[1ex]
 Pokrivka Helena (01460370)}
\postauthor{\end{tabular}\end{center}\vskip3ex}
\date{Klagenfurt, am \today{}}
\renewcommand{\maketitlehookd}{\centering\vfill\includegraphics{pepe-le-pew2}\vfill}

\begin{document}

\maketitle

 \end{document} 

enter image description here

Bernard
  • 271,350
  • Haven't you answered the same question a few times by now? Why not mark as duplicate? – Johannes_B Dec 15 '18 at 21:20
  • @Johannes_B : Just because I don't know exactly what I have answered – I am aware I have answered more or less similar questions, but I don't remember when anyway, so it's almost impossible to find them. Do you know such an answer of mine? – Bernard Dec 15 '18 at 21:41
  • https://tex.stackexchange.com/questions/214255/inserting-a-picture-in-a-title-page or https://tex.stackexchange.com/questions/287523/how-to-put-an-image-on-maketitle-page-below-the-authors-name – Johannes_B Dec 15 '18 at 22:06