I'd like to design a titlepage including 2 logos below the \author definition of command \maketitle. I have found this post, which describes how to make a whole page like this, but I just want the same style as the default \maketitle as top header of the first page. Not the whole page.
Ideally I could choose if I have the logos side by side (horizontal placement) or vertically placed but both always centered.
How can this be accomplished?
\documentclass[a4paper,ngerman]{article}
\usepackage[ngerman]{babel}
\usepackage[utf8]{inputenc}
\usepackage{graphicx}
\usepackage{fancyhdr}
\usepackage{abstract}
\usepackage{lastpage}
\usepackage{amsmath}
\usepackage{color} % colors used for Matlab-codel listings
\definecolor{mygreen}{RGB}{28,172,0} % color values Red, Green, Blue
\definecolor{mylilas}{RGB}{170,55,241}
\usepackage{listings}
\usepackage{comment}
\usepackage{url}
\usepackage{bm}
\usepackage[top=1in, bottom=1.25in, left=1.25in, right=1.25in]{geometry}
\usepackage[T1]{fontenc}
\pagestyle{fancy}
\newcommand{\exercisedate}{date}
\setlength{\headheight}{18pt}
\fancyhead[L]{left }
\fancyhead[C]{}
\fancyhead[R]{\exercisedate}
\fancyfoot[C]{\thepage\ von \pageref{LastPage}}
\fancyfoot[L]{}
\begin{document}
\author{author}
%\publishers{}
\date{\exercisedate}
\title{title}
\clearpage\maketitle
\thispagestyle{fancy}
\begin{abstract}
Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.
\end{abstract}
\section*{section}
\subsection{subsection}
\subsubsection{subsubsection}
\end{document}


.png, I get the errorcannot determine size of graphic in img/logo.png. I know this is not due to your code (which is great) but do you know what I can do to solve this? It also saysno bounding box. – avermaet Sep 21 '19 at 11:42sam2por ImageMagick'sconvert(if you're on a Linux or Mac) and use those files instead. – Skillmon Sep 21 '19 at 11:46