Tuesday, March 20, 2012

Logo in Latex Beamer Presentation / Slideshow

  • The logo is on the bottom right corner of every page: to do that use the \logo command. Here's a complete code example:
\documentclass[compress]{beamer}
\usepackage[latin1]{inputenc}
\usepackage{pgf,pgfarrows,pgfnodes,pgfautomata,pgfheaps,pgfshade}
\usepackage{amsmath,amssymb}
\usepackage[latin1]{inputenc}
\usepackage{colortbl}
\usepackage{graphicx}
\usepackage[english]{babel}
\usepackage{tabularx}
\usetheme{Singapore}%define the beamer theme
\setbeamertemplate{navigation symbols}{}%remove navigation symbols\setbeamertemplate{section in head/foot shaded}[default][20]\setbeamertemplate{subsection in head/foot shaded}[default][20]
\logo{\includegraphics[height=0.5cm]{youlogoname.eps}} %change here. I used an eps file logo, you can use jpg or other format
\title[My Title ]{My~Title}
\author[My~Name]{My~Name}
\institute[My Institute/company]{My Institute/company\\ \date[DLT 2007]{My Seminar name/place/date}
\subject{My title/subejct}
\begin{document}
Type document content here
\end{document}

  • The logo is only on the front page: use \pgfdeclareimage and\pgfuseimage. Here's teh example:
\documentclass[compress]{beamer}
\usepackage[latin1]{inputenc}
\usepackage{pgf,pgfarrows,pgfnodes,pgfautomata,pgfheaps,pgfshade}
\usepackage{amsmath,amssymb}
\usepackage[latin1]{inputenc}
\usepackage{colortbl}
\usepackage{graphicx}
\usepackage[english]{babel}
\usepackage{tabularx}
\usetheme{Singapore}%define the beamer theme
\setbeamertemplate{navigation symbols}{}%remove navigation symbols
\setbeamertemplate{section in head/foot shaded}[default][20]
\setbeamertemplate{subsection in head/foot shaded}[default][20]
\title[My Title ]{My~Title} \author[My~Name]{My~Name}
\institute[My Institute/company]{My Institute/company\\ \pgfdeclareimage[height=0.5cm]{myalias}{pselogo} %declare logo image with an alias here \pgfuseimage{myalias}} %use the image right after
\date[DLT 2007]{My Seminar name/place/date} \subject{My title/subejct}
\begin{document}
Type document content here
\end{document}

from: http://stuffforlife.blogspot.ca/2008/10/logo-in-latex-beamer-presentation.html

No comments:

Post a Comment