Presentations and Posters ⇒ Logo in top corner
-
- Posts: 679
- Joined: Tue Mar 03, 2015 4:01 pm
Logo in top corner
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
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
Logo in top corner
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}
Vel
-
- Posts: 679
- Joined: Tue Mar 03, 2015 4:01 pm
Re: Logo in top corner
have a great day,
E