You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to beamer...@googlegroups.com
Hi, I recently used the LaTeX beamerposter package to create my poster. It really worked for me quite well. But one sample question: is there any chance that I can use a background image?
Thanks for support!
Xiaoming
xiaoming
unread,
Dec 1, 2010, 9:07:36 AM12/1/10
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to LaTeX beamerposter
problem solved! Basically it's pretty easy. Hier is my solution:
\usepackage{tikz}
\setbeamertemplate{background canvas}
{
\tikz{\node[inner sep=0pt,opacity=1.0] {\includegraphics[height=
\paperheight,width=\paperwidth]{my background}};}
}
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to beamer...@googlegroups.com
Le mercredi 01 décembre 2010 à 06:07 -0800, xiaoming a écrit : > problem solved! Basically it's pretty easy. Hier is my solution: > \usepackage{tikz} > \setbeamertemplate{background canvas} > { > \tikz{\node[inner sep=0pt,opacity=1.0] {\includegraphics[height= > \paperheight,width=\paperwidth]{my background}};}
Isn't there a command \usebackgroundtemplate to do so? I think that the following works (and does not require tikz): \usebackgroundtemplate{\includegraphics[height=\paperheight]{my background}}
Magic Banana
xiaoming
unread,
Dec 1, 2010, 10:42:35 AM12/1/10
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to LaTeX beamerposter
> Isn't there a command \usebackgroundtemplate to do so? I think that the
> following works (and does not require tikz):
> \usebackgroundtemplate{\includegraphics[height=\paperheight]{my
> background}}
Yes, you are right. It works just perfect. Thanks!