Presentations and PostersBeamer Logo Position

Beamer, Powerdot and KOMA-Script presentations, Conference posters (a0poster, baposter, tikzposter)
Post Reply
adam_west
Posts: 5
Joined: Wed Feb 01, 2017 4:48 pm

Beamer Logo Position

Post by adam_west »

Hi, i'm using the Rochester theme and i want the logo on the top-right corner.
Any ideas ? thks in advance :)

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

User avatar
Stefan Kottwitz
Site Admin
Posts: 10321
Joined: Mon Mar 10, 2008 9:44 pm

Beamer Logo Position

Post by Stefan Kottwitz »

Hi Adam,

welcome to the forum!

That's easy with the textpos package. For example:

Code: Select all

\documentclass[12pt]{beamer}
\usetheme[height=14mm]{Rochester}
\usepackage{textpos}
\addtobeamertemplate{headline}{}{%
\begin{textblock*}{100mm}(.85\textwidth,-1cm)
\Huge\textcolor{white}{\textbf{\TeX}}
\end{textblock*}}
\begin{document}
\begin{frame}
  \frametitle{A sample slide}
  \framesubtitle{Including the logo in the top right corner}
  Some text
\end{frame}
\end{document}
beamer-logo.png
beamer-logo.png (9.37 KiB) Viewed 47288 times
Stefan
LaTeX.org admin
adam_west
Posts: 5
Joined: Wed Feb 01, 2017 4:48 pm

Beamer Logo Position

Post by adam_west »

Thks Stefan, i forgot that I had posted here. I browsed over the internet and i found it. Anyway thks for the reply and for the welcoming :)
User avatar
Stefan Kottwitz
Site Admin
Posts: 10321
Joined: Mon Mar 10, 2008 9:44 pm

Beamer Logo Position

Post by Stefan Kottwitz »

Come back here if you see further LaTeX topics we can talk about. ;-)

Stefan
LaTeX.org admin
Post Reply