Presentations and PostersLogo in top corner

Beamer, Powerdot and KOMA-Script presentations, Conference posters (a0poster, baposter, tikzposter)
Post Reply
templateuser
Posts: 679
Joined: Tue Mar 03, 2015 4:01 pm

Logo in top corner

Post by templateuser »

Hey,

I would like to put a logo on the top left corner (over the line). I dont know if that is to be changed in the theme file or can be done in the posted .tex file.

Thanks!
E

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org
LaTeX Beginner's Guide LaTeX Cookbook LaTeX TikZ graphics TikZによるLaTeXグラフィックス
User avatar
Vel
Site Moderator
Posts: 463
Joined: Fri Jun 29, 2012 1:20 am

Logo in top corner

Post by Vel »

Hey,

You'll need to open up beamerthemeconfposter.sty and go to the "% build the poster title" block on lines 194.

You can then add a new column with a picture like this:

Code: Select all

\begin{columns}
  \begin{column}{0.2\linewidth}
   \hspace{6cm}\includegraphics[width=7cm]{placeholder.jpg}
   \end{column}
   \begin{column}{0.8\linewidth}
    \vskip1cm
    \centering
    \usebeamercolor{title in headline}{\color{jblue}\Huge{\textbf{\inserttitle}}\\[0.5ex]}
    \usebeamercolor{author in headline}{\color{fg}\Large{\insertauthor}\\[1ex]}
    \usebeamercolor{institute in headline}{\color{fg}\large{\insertinstitute}\\[1ex]}
    \vskip1cm
   \end{column}
   \vspace{1cm}
  \end{columns}
Cheers,
Vel
Founder and administrator of LaTeXTemplates.com and LaTeXTypesetting.com
templateuser
Posts: 679
Joined: Tue Mar 03, 2015 4:01 pm

Re: Logo in top corner

Post by templateuser »

Thank you so much! That worked perfectly!

have a great day,
E
Post Reply