Beamer, Powerdot and KOMA-Script presentations, Conference posters (a0poster, baposter, tikzposter)
-
chakib
- Posts: 4
- Joined: Sun Feb 24, 2019 5:45 pm
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.
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
-
Stefan Kottwitz
- Site Admin
- Posts: 10360
- Joined: Mon Mar 10, 2008 9:44 pm
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
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 930 times
-
Stefan Kottwitz
- Site Admin
- Posts: 10360
- Joined: Mon Mar 10, 2008 9:44 pm
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
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
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 959 times