Minimal (non-)Working Example:
\documentclass{beamer}
\usepackage{graphicx}
\usetheme{Bergen}
\usecolortheme[named=red]{structure}
\setbeamertemplate{footline}[text line]{%
\parbox{\linewidth}{\vspace*{-8pt}\hfill \includegraphics[width=2cm]{Logo.jpg}}}
\setbeamertemplate{navigation symbols}{}
\begin{document}
\begin{frame}
\end{frame}
\end{document}
(Logo.jpg is my University's logo.) Result:
Aim:
For the title page, and:
For other pages. Questions:
- How do I change the width of the vertical stripe?
- How do I make said stripe extend into the footline?
- How do I put the logo on the stripe?
- How do I change the background?
(Note: Please disregard the size difference of the bottom-right logos, I just need to fix the width= in the \includegraphics command for that.)
Update
With @samcarter's comments, I was able to get the background in:
Code:
\documentclass{beamer}
\setbeamertemplate{background}
{\includegraphics[width=\paperwidth,height=\paperheight,keepaspectratio]{Background.png}}
\usetheme{Bergen}
\usecolortheme[named=red]{structure}
\setbeamertemplate{footline}[text line]{%
\parbox{\linewidth}{\vspace*{-8pt}\hfill \includegraphics[width=1cm]{Logo.jpg}}}
\setbeamertemplate{navigation symbols}{}
\begin{document}
\begin{frame}
\end{frame}
\end{document}
So question 4 is solved. Her suggestions for 1-2 seem not to work for me. Question 3 is as of now unaddressed.







\setbeamersize{sidebar width left=.15\paperwidth}– samcarter_is_at_topanswers.xyz Dec 10 '18 at 18:35inmargininner theme is a good idea for this type of desired result, this will look terrible for itemizations etc. Better use something based on the sidebar theme. – samcarter_is_at_topanswers.xyz Dec 10 '18 at 18:36graphicxwith beamer – samcarter_is_at_topanswers.xyz Dec 10 '18 at 18:36\setbeamersizeseems not to be working for me: I tried 1cm and 2cm and the result is the same… – MickG Dec 10 '18 at 18:38\beamer@sidebarsideseems to be undefined). – MickG Dec 10 '18 at 18:44