Presentations and PostersPicutre full size on slide

Beamer, Powerdot and KOMA-Script presentations, Conference posters (a0poster, baposter, tikzposter)
Post Reply
chakib
Posts: 4
Joined: Sun Feb 24, 2019 5:45 pm

Picutre full size on slide

Post by chakib »

Hello,

I want to put a picture but in a full size of the first slide,but it still remains an empty space. This is my source code:

Code: Select all

\begin{frame}[plain]
	\begin{center}
		\begin{figure}
			\includegraphics[scale=0.7]{main-topic}
		\end{figure}
	\end{center}
\end{frame}
Can you help me? Thanks.

Best regards.

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org
LaTeX Beginner's Guide LaTeX Cookbook LaTeX TikZ graphics TikZによるLaTeXグラフィックス
User avatar
Stefan Kottwitz
Site Admin
Posts: 10290
Joined: Mon Mar 10, 2008 9:44 pm

Picutre full size on slide

Post by Stefan Kottwitz »

Welcome to the forum!

Don't use \begin{center} ... \end{center}. This adds space before and after.

Better choose \centering.

Stefan
LaTeX.org admin
chakib
Posts: 4
Joined: Sun Feb 24, 2019 5:45 pm

Picutre full size on slide

Post by chakib »

Hello,

Thank you for your reply but i still have the same result.

You can find my project in the attached file.

Regards.

Chakib.
Attachments
Template Beamer.zip
(15.86 KiB) Downloaded 739 times
User avatar
Stefan Kottwitz
Site Admin
Posts: 10290
Joined: Mon Mar 10, 2008 9:44 pm

Picutre full size on slide

Post by Stefan Kottwitz »

It's still \center. It should be \centering.

The image size should be scaled to the text width. And a figure environment is not necessary, since caption or referencing are not needed.

Code: Select all

\begin{frame}[plain]
  \centering
  \includegraphics[width=\textwidth]{main-topic}
\end{frame}
There's still a very small margin with the navigation symbols.

Stefan
LaTeX.org admin
chakib
Posts: 4
Joined: Sun Feb 24, 2019 5:45 pm

Picutre full size on slide

Post by chakib »

Hello,

Thanks for your reply.

Now, I'm trying to position two images in two different slides, but exactly at the same position. What's the best way to do it?

Thanks.

Regards.
chakib
Posts: 4
Joined: Sun Feb 24, 2019 5:45 pm

Picutre full size on slide

Post by chakib »

Hello,

You can find my template with two pictures in the attached file.

Thanks.
Attachments
template beamer.zip
(45.18 KiB) Downloaded 763 times
Post Reply