\documentclass{beamer}
%
% Choose how your presentation looks.
%
% For more themes, color themes and font themes, see:
% http://deic.uab.es/~iblanes/beamer_gallery/index_by_theme.html
%
\mode<presentation>
{
\usetheme{default} % or try Darmstadt, Madrid, Warsaw, ...
\usecolortheme{default} % or try albatross, beaver, crane, ...
\usefonttheme{default} % or try serif, structurebold, ...
\setbeamertemplate{navigation symbols}{}
\setbeamertemplate{caption}[numbered]
\setbeamertemplate{footline}[frame number]
}
\usepackage[english]{babel}
\usepackage{bm}
\usepackage{graphicx}
\usepackage[utf8x]{inputenc}
\begin{document}
\begin{frame}{Densities in ASK2ME}
\includegraphics[width = \textwidth]{pic1.png}
\\
\end{frame}
\end{document}
I am new to latex beamer and would like to insert some images into my slides. I am using \includegraphics[width = \textwidth]{pic1.png} which resizes the pic1 to fit my slide. But I still think it's a bit too small and I want it to take up more of the space on the slide.
I've also tried \includegraphics[scale = ?]{pic1.png} and experimented with different numbers but I couldn't find one that is big enough to fit the slide but not big enough so that some of the figure goes off the slide.
Is there a way to make the figure take up more space in the slide?


widthandheightin\includegraphicsoption according to your desire@Adrian – Biki Teron Jul 25 '17 at 02:26scaleis the right way to go, because it preserves the aspect ratio of the image, and if you couldn't find a value that worked, then it means that your image isn't proportioned in a way that can make maximum use of the slide area. If you set the width and height independently then you will distort the image. BTW, you shouldn't have \ at the end of the slide (or almost anywhere in normal text) and you shouldn't useutf8x(see utf8 vs utf8x. – Alan Munn Jul 25 '17 at 02:47scalebut setting both height and width independently will distort the image. You could also try adding\hspace*{-.5cm}before the\includegraphicscommand and using some >1 multiplier for\textwidthe.g.1.1\textwidthor1.2\textwidthetc. – Alan Munn Jul 25 '17 at 03:01