Page Layoutbeamer | Make the Logo overlap the Rest

Information and discussion about page layout specific issues (e.g. header and footer lines, page formats, page numbers).
Post Reply
fkpacini
Posts: 4
Joined: Wed Aug 17, 2011 5:43 pm

beamer | Make the Logo overlap the Rest

Post by fkpacini »

Hi everybody,
Does anyone know how to make sure that a command such as

Code: Select all

\logo{\includegraphics[height=0.7 cm]{RogersLogo.png}}
correctly overlaps any possible other stuff that come into the logo area at the bottom of the page? The file is a transparent PNG btw.
If I find out I can avoid use Power Point!! It's for a good cause!! :)

Thank you sooo much!
Last edited by localghost on Fri Aug 26, 2011 5:27 pm, edited 2 times in total.

Recommended reading 2024:

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

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

And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p

Stefan Kottwitz
Site Admin
Posts: 10334
Joined: Mon Mar 10, 2008 9:44 pm

Re: beamer | Make the Logo overlap the Rest

Post by Stefan Kottwitz »

Hi!

Do you use the beamer class? If yes, which theme? There's not much information yet.
The best would be if you post a small example of what you are doing now, besides telling what you would like to change there.

Stefan
LaTeX.org admin
fkpacini
Posts: 4
Joined: Wed Aug 17, 2011 5:43 pm

beamer | Make the Logo overlap the Rest

Post by fkpacini »

Hi!! Sure!
I am used beamer class, mode presentation.
Here is a sample:

Code: Select all

\documentclass[latin1,english,9pt,trans]{beamer}

\mode<presentation>
{
  \usetheme{Warsaw}
  % or ...
  \setbeamercolor{title}{fg=white,bg=white!20!orange}
  \setbeamercolor{structure}{fg=white!20!orange}

  \setbeamercovered{transparent}
  % or whatever (possibly just delete it)
}

\frenchspacing
\usepackage[english]{babel}
\usepackage[latin1]{inputenc}
\usepackage{times} 
\usepackage{inputenc}
\usepackage{amsmath}
\usepackage{graphicx}
\usepackage{blindtext}
\usepackage{pst-node,graphicx}

 \logo{\includegraphics[height=0.7 cm]{RogersLogo.png}}

\title[Title] % (optional, use only with long paper titles)
{Title}

\subtitle[Subtitle]
{Subtitle}

\begin{document}

\begin{frame}{  }{  }
.... etc etc


Thanks!
Last edited by localghost on Fri Aug 26, 2011 5:28 pm, edited 2 times in total.
User avatar
Stefan Kottwitz
Site Admin
Posts: 10334
Joined: Mon Mar 10, 2008 9:44 pm

Re: beamer | Make the Logo overlap the Rest

Post by Stefan Kottwitz »

This sample cannot be compiled and I don't see where you use the logo, even when I complete that.

Stefan
LaTeX.org admin
fkpacini
Posts: 4
Joined: Wed Aug 17, 2011 5:43 pm

Re: beamer | Make the Logo overlap the Rest

Post by fkpacini »

\documentclass[latin1,english,9pt,trans]{beamer}

\mode<presentation>
{
\usetheme{Warsaw}
% or ...
\setbeamercolor{title}{fg=white,bg=white!20!orange}
\setbeamercolor{structure}{fg=white!20!orange}

\setbeamercovered{transparent}
% or whatever (possibly just delete it)
}

\frenchspacing
\usepackage[english]{babel}
% or whatever

\usepackage[latin1]{inputenc}
% or whatever

\usepackage{times}


\usepackage{inputenc}
\usepackage{amsmath}
\usepackage{graphicx}
\usepackage{blindtext}
\usepackage{pst-node,graphicx}




\logo{\includegraphics[height=0.7 cm]{RogersLogo.png}}


\title[Title]
{Title}

\subtitle[Subtitle]
{Subtitle}


\institute[]

\begin{document}



\begin{frame}{ }{ }
\vspace{2 cm}
\date{}
\maketitle


\end{frame}

\begin{frame}{?}{?}
\includegraphics[width=10 cm]{Tiger_4.png}
\end{frame}
\end{document}
User avatar
Stefan Kottwitz
Site Admin
Posts: 10334
Joined: Mon Mar 10, 2008 9:44 pm

beamer | Make the Logo overlap the Rest

Post by Stefan Kottwitz »

Please use the Code button for inserting code.

You could use the eso-pic package for putting a logo to the fore ground. Instead of \logo write

Code: Select all

\usepackage[pscoord]{eso-pic}
\AddToShipoutPictureFG{
    \put(\LenToUnit{.9\paperwidth},
    \LenToUnit{.1\paperheight})
    {\vtop{{\null}
    \makebox[0pt][c]{\includegraphics[height=0.7cm]{RogersLogo}}}}}
and adjust the values as desired.

Stefan
LaTeX.org admin
fkpacini
Posts: 4
Joined: Wed Aug 17, 2011 5:43 pm

beamer | Make the Logo overlap the Rest

Post by fkpacini »

It gives me error while compiling.... the

Code: Select all

\AddToShipoutPictureF
G is good, is there another way to put the logo at the lower right of the page?
User avatar
Stefan Kottwitz
Site Admin
Posts: 10334
Joined: Mon Mar 10, 2008 9:44 pm

Re: beamer | Make the Logo overlap the Rest

Post by Stefan Kottwitz »

Why don't you tell us the error message or what you have tried? It works fine for me, and I tested it with your code.

I can do it in another way, but I don't see the reason yet to work it out if you don't like to explain why the first way doesn't seem to work for you.

Stefan
LaTeX.org admin
Post Reply