[Tex/LaTex] Presentation Beamer [title page]

beamer

I want to make a cover page as the attached figure. The problem is that the beamer has, by default, the macros predefined: \author{} \title{} ', ... and their location is fixed by default.
Could you help me?

Here is my code:

\title[Short Paper Title]  
{presentation}

\subtitle
{About some things}

\author 
 { Author}


\institute 
{
Department of Computer Science\\
University of Somewhere
}

\date
 {\today}

enter image description here

Best Answer

Here's one possible solution (depending on your specific needs you might need to adjust some lengths and fonts); a new command \titlegraphicii was defined for inclusion of the second logo; it's used in the same way as the standard \titlegraphic:

\PassOptionsToPackage{demo}{graphicx}
\documentclass{beamer}
\usetheme{Warsaw}

\makeatletter
\newcommand\titlegraphicii[1]{\def\inserttitlegraphicii{#1}}
\titlegraphicii{}
\setbeamertemplate{title page}
{
  \vbox{}
   {\usebeamercolor[fg]{titlegraphic}\inserttitlegraphic\hfill\inserttitlegraphicii\par}
  \begin{centering}
    \begin{beamercolorbox}[sep=8pt,center]{institute}
      \usebeamerfont{institute}\insertinstitute
    \end{beamercolorbox}
    \begin{beamercolorbox}[sep=8pt,center]{title}
      \usebeamerfont{title}\inserttitle\par%
      \ifx\insertsubtitle\@empty%
      \else%
        \vskip0.25em%
        {\usebeamerfont{subtitle}\usebeamercolor[fg]{subtitle}\insertsubtitle\par}%
      \fi%     
    \end{beamercolorbox}%
    \vskip1em\par
    \begin{beamercolorbox}[sep=8pt,center]{date}
      \usebeamerfont{date}\insertdate
    \end{beamercolorbox}%\vskip0.5em
    \begin{beamercolorbox}[sep=8pt,center]{author}
      \usebeamerfont{author}\insertauthor
    \end{beamercolorbox}
  \end{centering}
  %\vfill
}
\makeatother
\author{Presented by Author}
\title{Presentation Title}
\subtitle{Presentation Subtile}
\institute{Department \\ University}
\date{\today}
\titlegraphic{\includegraphics[height=1cm,width=2cm]{logo1}}
\titlegraphicii{\includegraphics[height=1cm,width=2cm]{logo2}}

\begin{document}

\begin{frame}[plain]
\maketitle
\small
{\centering\itshape Jury Members\par}
President: president\par\medskip
\begin{tabular}[t]{@{}l@{\hspace{3pt}}p{.32\textwidth}@{}}
Examiners: & examiner 1 \\
& examiner 2 \\
& examiner 3 \\
& examiner 4
\end{tabular}%
\footnotesize
\begin{tabular}[t]{@{}l@{\hspace{3pt}}p{.3\textwidth}@{}}
Supervisor 1: & supervisor \\
Supervisor 2: & supervisor
\end{tabular}%
\end{frame}

\end{document}

enter image description here

The line

\PassOptionsToPackage{demo}{graphicx}

replaces actual figures with black rectangles; delete that line in your actual document.

Related Question