Information and discussion about page layout specific issues (e.g. header and footer lines, page formats, page numbers).
fkpacini
Posts: 4 Joined: Wed Aug 17, 2011 5:43 pm
Post
by fkpacini » Wed Aug 17, 2011 5:48 pm
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.
NEW: TikZ book now 40% off at Amazon.com for a short time.
Stefan Kottwitz
Site Admin
Posts: 10348 Joined: Mon Mar 10, 2008 9:44 pm
Post
by Stefan Kottwitz » Wed Aug 17, 2011 5:51 pm
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
Post
by fkpacini » Wed Aug 17, 2011 5:57 pm
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.
Stefan Kottwitz
Site Admin
Posts: 10348 Joined: Mon Mar 10, 2008 9:44 pm
Post
by Stefan Kottwitz » Wed Aug 17, 2011 6:05 pm
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
Post
by fkpacini » Wed Aug 17, 2011 6:28 pm
\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}
Stefan Kottwitz
Site Admin
Posts: 10348 Joined: Mon Mar 10, 2008 9:44 pm
Post
by Stefan Kottwitz » Wed Aug 17, 2011 6:48 pm
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
Post
by fkpacini » Wed Aug 17, 2011 7:15 pm
It gives me error while compiling.... the
G is good, is there another way to put the logo at the lower right of the page?
Stefan Kottwitz
Site Admin
Posts: 10348 Joined: Mon Mar 10, 2008 9:44 pm
Post
by Stefan Kottwitz » Wed Aug 17, 2011 8:47 pm
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