Hallo zusammen,
ich hoffe ihr könnt mir helfen.
Ich möchte in der Beamer-Klasse von Latex eine Tabelle neben einer png- Grafik haben.
Die Tabelle erstelle ich wie folgt:
\begin{tabular}{cc}
\hline
1 & 2\tabularnewline
\hline
\hline
4 & 3\tabularnewline
\hline
\end{tabular}
Ich habe versucht dies mit Minipages zu lösen indem ich die Tabelle in eine geschrieben hab und die Graphik in eine zweite. Und ich habe dann die Spaltenbreite auf 0.45 gesetzt, bin aber nicht zum gewünschten Ergebnis gekommen, da die Graphik über der Tabelle erscheint.
So habe ich es auch probiert und obiges Problem auch wieder gehabt:
\begin{tabular}{cc}
\begin{minipage}[b][1\totalheight][tt]{0.25\columnwidth}%
\noindent %
\begin{tabular}{cc}
\hline
\textbf{\scriptsize{BRAF}} & \textbf{\scriptsize{KIAA1549}}\tabularnewline
\hline
\hline
{\footnotesize{make a protein that }} & {\footnotesize{mebrane protein}}\tabularnewline
\hline
{\footnotesize{transmit chemical signals}} & {\footnotesize{widely expressed in}}\tabularnewline
{\footnotesize{control cell growth and development}} & {\footnotesize{normal tissue}}\tabularnewline
\hline
{\footnotesize{normally: switched on and off}} & {\footnotesize{overexpression in }}\tabularnewline
{\footnotesize{in response to signals}} & {\footnotesize{pilocytic astrocytoma}}\tabularnewline
\hline
{\footnotesize{cancer: continuously active }} & \tabularnewline
{\footnotesize{$\rightarrow$ abnormal cells grow }} & \tabularnewline
\hline
\end{tabular}%
\end{minipage} & %
\begin{minipage}[b][1\totalheight][tt]{0.45\columnwidth}%
\includegraphics[scale=0.4]{uds-logo}%
\end{minipage}\tabularnewline
\end{tabular}
Wie kann ich das Problem lösen?