0

This is a snapshot of a Microsoft PowerPoint presentation slide:

this is snapshot of Microsoft PowerPoint presentation slide

I have tried this code, but the text goes outside the slide and I want to use only Warsaw theme:

\begin{frame}
\frametitle{Mean monthly change in projected TMax under A2 and A1B scenarios of CGCM3 model}
\begin{columns}
\begin{column}{0.47\columnwidth}
\begin{figure}
\includegraphics[width=1.8in]{CGCM3A2max}
\caption{CGCM3A2max}
\end{figure}

\begin{itemize}
\justifying
\item \scriptsize{The highest increase in Tmax is anticipated in the month of November under A1B scenarios in 2080s ie 2.31 $\circ$C. }
\item \scriptsize{On the contrary, highest decrease can be seen in the month of September (2.09$\circ$C) under A2 scenario in 2080s.}
\end{itemize}
\end{column}

\begin{column}{0.48\columnwidth}
\begin{itemize}
\justifying
\item \scriptsize{Significant decrease of 0.13-0.93, 0.11-1.42, 0.81-2.09 oC predicted for August and September}
\item \scriptsize{Significant increase in Tmax is predicted in winter season in the range of 0.09-1.82, 0.32-1.92, 0.52-2.31 oC respectively for three time periods under A2 and A1B scenario}
\end{itemize}
\begin{figure}
\includegraphics[width=1.8in]{CGCM3A1Bmax}
\caption{CGCM3A}
\end{figure}
\end{column}
\end{columns}
\end{frame}

Also tried another code but there is no space on right side as on left side of frame:

\begin{frame}
\frametitle{Mean monthly change in projected TMax under A2 and A1B scenarios of CGCM3 model}
\begin{columns}
\begin{column}{0.47\columnwidth}
\framebox{\includegraphics[width=1.95in]{CGCM3A2max}}
\begin{itemize}
\justifying
\item \scriptsize{The highest increase in Tmax is anticipated in the month of November under A1B scenarios in 2080s ie 2.31 $\circ$C. }
\item \scriptsize{On the contrary, highest decrease can be seen in the month of September (2.09$\circ$C) under A2 scenario in 2080s.}
\end{itemize}
\end{column}

\begin{column}{0.48\columnwidth}
\begin{itemize}
\justifying
\item \scriptsize{Significant decrease of 0.13-0.93, 0.11-1.42, 0.81-2.09 oC predicted for August and September}
\item \scriptsize{Significant increase in Tmax is predicted in winter season in the range of 0.09-1.82, 0.32-1.92, 0.52-2.31 oC respectively for three time periods under A2 and A1B scenario}
\end{itemize}
\framebox{\includegraphics[width=1.95in]{CGCM3A1Bmax}}
\end{column}
\end{columns}
\end{frame}
Chitra
  • 1
  • 1
    Welcome to TeX.SX. Questions about how to draw specific graphics that just post an image of the desired result are really not reasonable questions to ask on the site. Please post a minimal compilable document showing that you've tried to produce the image and then people will be happy to help you with any specific problems you may have. See minimal working example (MWE) for what needs to go into such a document. – Stefan Pinnow Oct 22 '16 at 17:48
  • 2
    There are nothing special in this format, apart form basic techniques as include an image, make two columns in Beamer or add a custom item symbol. What is the problem? – Fran Oct 22 '16 at 18:15
  • @Stefan Pinnow I used aboce code but then i want some space on right side also as on left side of slide also it goes outside of the frame plz give some solution. I added my code which i have tried. thanks for ur time – Chitra Oct 23 '16 at 08:32

1 Answers1

3

Something like this?

enter image description here

What I've done?

smaller images without caption and just included with \includegraphics, not figure environment.

replaced unknown (at least for me) \justifing command with \centering

\documentclass{beamer}
\usetheme{warsaw}

\begin{document}

\begin{frame}
\frametitle{Mean monthly change in projected TMax under A2 and A1B scenarios of CGCM3 model}
\begin{columns}[onlytextwidth]
\begin{column}{0.48\columnwidth}
\centering
\includegraphics[width=1.5in]{example-image}
\smallskip
\begin{itemize}
\item \scriptsize{The highest increase in Tmax is anticipated in the month of November under A1B scenarios in 2080s ie 2.31 $\circ$C. }
\item \scriptsize{On the contrary, highest decrease can be seen in the month of September (2.09$\circ$C) under A2 scenario in 2080s.}
\end{itemize}
\end{column}

\begin{column}{0.48\columnwidth}
\centering
\begin{itemize}
\item \scriptsize{Significant decrease of 0.13-0.93, 0.11-1.42, 0.81-2.09 oC predicted for August and September}
\item \scriptsize{Significant increase in Tmax is predicted in winter season in the range of 0.09-1.82, 0.32-1.92, 0.52-2.31 oC respectively for three time periods under A2 and A1B scenario}
\end{itemize}
\smallskip
\includegraphics[width=1.5in]{example-image}
\end{column}
\end{columns}
\end{frame}

\end{document}
Ignasi
  • 136,588