1

I need this tikz and tabular sketch at the right of my presentation, and some text at left.

Unfortunatly the text is at left but in the down part of my frame, I need it at the center and starting from the top.

This is my code.

\documentclass[aspectratio=169,draft]{beamer}



\usepackage{beamerthemeshadow}
\usepackage[utf8]{inputenc}
\usepackage[spanish]{babel}
\usepackage{amsmath,amssymb}


\usepackage{amsfonts}

\usepackage{pgf,tikz}
\usetikzlibrary{arrows}
\usepackage{float}

\usepackage{array}


\begin{document}

\frame[shrink]{\frametitle{Implementación del Metodo de diferencias en redes cristlinas}

\begin{minipage}{.6\textwidth}
\begin{figure}[l]
\begin{tabular}{
  >{\centering\arraybackslash}p{.45\textwidth}
  >{\centering\arraybackslash}p{.45\textwidth}
  }
  \tikz[remember picture]\node[inner sep=0pt] (imagen11)   
    {\includegraphics[height=2cm]{RepRedSC2D}};
  \caption{Red.Replicación de celdas Unitarias}
  \label{redes}
  & 
  \tikz[remember picture]\node[inner sep=0pt] (imagen12)
    {\includegraphics[height=2cm]{11UnitSC2D}};
  \caption{Celda Unitaria SC-2D}
  \label{UnitSC2D}
  \\
  \tikz[remember picture]\node[inner sep=0pt] (imagen21)
    {\includegraphics[height=2cm]{VecUSC2D}};
  \caption{Vecindade en el eje x para aproximar el metodo}
  \label{VecU}
  & 
  \tikz[remember picture]\node[inner sep=0pt] (imagen22)
    {\includegraphics[height=2cm]{2UnitDivSC2D}};
  \caption{Division de la Celda Unidad}
  \label{Unit2Di}
 \end{tabular}
\end{figure}

\begin{tikzpicture}[
  remember picture,overlay,
  >=latex,
  shorten >= 10pt,
  shorten <= 10pt,
  magenta
]
\draw[->]
  (imagen11) -- (imagen12);
\draw[->,shorten <= 30pt]
  (imagen12) -- (imagen22);
\draw[->]
  (imagen22) -- (imagen21);
\end{tikzpicture}
\end{minipage}%
\begin{minipage}{4\textwidth}
\begin{itemize}
\item Here are the expresion of neighbors of $U_{a}$
\item We have here the the function $\psi$
\item We have here the the function $\psi$
\item We have here the the function $\psi$
\item We have here the the function $\psi$
\item We have here the the function $\psi$
\item We have here the the function $\psi$
\item We have here the the function $\psi$
\end{itemize}

\end{minipage}

}

\end{document}
sergej
  • 6,461
  • 32
  • 62
JuanMuñoz
  • 1,454
  • Instead of controling height of the image, change the width. –  Dec 01 '14 at 15:00
  • Did you try with beamer columns environment? Or with optional [pos] parameter for minipage? – Ignasi Dec 01 '14 at 15:05
  • Try using the wrapfig environment. For some examples see this answer: http://tex.stackexchange.com/questions/56176/handling-of-wrapfig-pictures-in-latex – Augustin Dec 01 '14 at 17:49
  • 1
    I get the text on the right, centred vertically and the tabular/images on the left. (Obviously I had to substitute another image for it to compile at all.) Asking for a minipage 4 times \textwidth is not really sensible, by the way ;). – cfr Aug 02 '15 at 21:11

1 Answers1

4

Do you like to obtain something like this? enter image description here

\documentclass[aspectratio=169,draft]{beamer}
    \usepackage{beamerthemeshadow}
    \usepackage[utf8]{inputenc}
%    \usepackage[spanish]{babel}
    \usepackage{graphicx}
    \usepackage{array}
    \usepackage{amsmath,amssymb,amsfonts}
    \usepackage{tikz}
\usetikzlibrary{arrows}
%\usepackage{float}

\begin{document}
\begin{frame}[shrink]
 \frametitle{Implementación del Metodo de diferencias en redes cristlinas}
\begin{minipage}{0.4\textwidth}
\begin{itemize}
\item Here are the expresion of neighbors of $U_{a}$
\item We have here the function $\psi$
\item We have here the function $\psi$
\item We have here the function $\psi$
\item We have here the function $\psi$
\item We have here the function $\psi$
\item We have here the function $\psi$
\item We have here the function $\psi$
\end{itemize}
\end{minipage}%
\begin{minipage}{.6\textwidth}
\begin{figure}[l]
\begin{tabular}{
  >{\centering\arraybackslash}p{.5\hsize}
  >{\centering\arraybackslash}p{.5\hsize}
  }
  \tikz[remember picture]\node[inner sep=0pt] (imagen11)
    {\includegraphics[height=2cm]{example-image}};
  \caption{Red.Replicación de celdas Unitarias}
  \label{redes}
  &
  \tikz[remember picture]\node[inner sep=0pt] (imagen12)
    {\includegraphics[height=2cm]{example-image}};
  \caption{Celda Unitaria SC-2D}
  \label{UnitSC2D}
  \\
  \tikz[remember picture]\node[inner sep=0pt] (imagen21)
    {\includegraphics[height=2cm]{example-image}};
  \caption{Vecindade en el eje x para aproximar el metodo}
  \label{VecU}
  &
  \tikz[remember picture]\node[inner sep=0pt] (imagen22)
    {\includegraphics[height=2cm]{example-image}};
  \caption{Division de la Celda Unidad}
  \label{Unit2Di}
 \end{tabular}
\end{figure}

\begin{tikzpicture}[
  remember picture,overlay,
  >=latex,
  shorten >= 10pt,
  shorten <= 10pt,
  magenta
]
\draw[->]
  (imagen11) -- (imagen12);
\draw[->,shorten <= 30pt]
  (imagen12) -- (imagen22);
\draw[->]
  (imagen22) -- (imagen21);
\end{tikzpicture}
\end{minipage}
\end{frame}
\end{document}
Zarko
  • 296,517