我需要这个 tikz 和表格草图放在演示文稿的右侧,并在左侧列出清单,但太长了

我需要这个 tikz 和表格草图放在演示文稿的右侧,并在左侧列出清单,但太长了

我需要在演示文稿的右侧放置这个 tikz 和表格草图,并在左侧放置一些文本。

不幸的是,文本在左侧,但在我的框架的下部,我需要它位于中心并从顶部开始。

这是我的代码。

\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}

答案1

你喜欢获得这样的东西吗? 在此处输入图片描述

\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}

相关内容