I am using the "Conference presentation" Beamer-Template from this link. I want to change it slightly, however. Here is what I want to do:
- On the title page, I want to insert a figure below the date. I have no clue as on how to do this.
- I want to insert a logo. I know, in the comments, the author of the template mentions one way to do this (the pgfdeclareimage part). However, I want this logo to appear on the upper right corner of every slight. So, starting on the second slight, at the top, there is this blue bar. And I want the logo to appear at the upper right corner, inside this bar. Is this possible? Is it possible only for .png or also for .svg ?
As always, very gratefull for help!
Minimal Working Example:
\documentclass{beamer}
\usetheme{Madrid}
\usepackage{textpos}
\addtobeamertemplate{frametitle}{}{%
\begin{textblock*}{100mm}(\textwidth,-1cm)
\includegraphics[height=1cm,width=1cm]{./figures/web_rgb_en}
\end{textblock*}}
\title[Final Presentation] {Title of my Presentation }
\author[Author 1, Author 2] {Author 1 \and Author 2}
%\titlegraphic{\includegraphics[width=2cm]{./figures/inst_logo}
\begin{document}
\begin{frame}
\titlepage
\end{frame}
\begin{frame}{Outline}
\tableofcontents
\end{frame}
\end{document}
And I am trying to insert this figure.
And If I try and include the \titlegraphic command, TeXstudio does not compile, it says: "File ended while scanning use of \titlegraphic"

svgpackage (needs shell escape and some external tools installed) – samcarter_is_at_topanswers.xyz Aug 24 '18 at 09:02