[Tex/LaTex] How to vertically center a minipage within a tabular environment

minipagetablesvertical alignment

My goal is to have the minipage of the second column vertically centered but I could not manage do do it. I tried the array package with the 'm' option :
\tabular{c|m} but it did not worked, I also tried to set the [t] option both to the minipage and to the tabular but with no success.

Do you know a way to make it works?

Here is a minimal exemple:

\documentclass[10pt,mathserif,smaller,fleqn]{beamer}
\usepackage{tikz}
\usepackage{multicol}
\usepackage[utf8]{inputenc}
\usetheme{Antibes}
\setbeamertemplate{navigation symbols}{}

\begin{document}
    \frame{
        \begin{center}
            \begin{tabular}[t]{c|c}
                \multicolumn{2}{c}{Une architecture hybride}\\[0.4em]
            \hline~\\[0.4em]
                \begin{tikzpicture}[scale=.5]
                    \input{hybride.tikz}
                \end{tikzpicture}
            &
                \begin{minipage}[t]{0.4\textwidth}
                    \begin{itemize}
                        \item bla
                        \item bla
                        \item bla
                    \end{itemize}
                \end{minipage}
            \end{tabular}
       \end{center}
    }
\end{document}

And here is the file hybride.tikz

\tikzset{client/.style={draw,rectangle,rounded corners=3pt,color=blue},
     server/.style={draw,rectangle,color=red}};

\node[client] (A) at (0,0) {Pair};
\node[client] (B) at (8,0) {Pair};
\node[client] (C) at (4,6.92) {Pair};
\node[server] (D) at (4,2.31) {Oracle};

\draw[->, >=latex, color=blue] (A) to[bend left=10] (B);
\draw[->, >=latex, color=blue] (A) to[bend left=10] (C);
\draw[->, >=latex, color=blue] (B) to[bend left=10] (A);
\draw[->, >=latex, color=blue] (B) to[bend left=10] (C);
\draw[->, >=latex, color=blue] (C) to[bend left=10] (A);
\draw[->, >=latex, color=blue] (C) to[bend left=10] (B);
\draw[->, >=latex, thick, color=red, dashed] (D) -- (A);
\draw[->, >=latex, thick, color=red, dashed] (D) -- (B);
\draw[->, >=latex, thick, color=red, dashed] (D) -- (C);

Best Answer

If the second column should be vertically centered to the picture you can use two m columns

\begin{tabular}{>{\centering}m{0.5\textwidth}|m{0.4\textwidth}}

enter image description here

Code:

\documentclass[10pt,mathserif,smaller,fleqn]{beamer}
\usepackage{tikz}
\usepackage{multicol}
\usepackage[utf8]{inputenc}
\usetheme{Antibes}
\setbeamertemplate{navigation symbols}{}

\usepackage{array}

\begin{document}
\begin{frame}
  \begin{center}
    \begin{tabular}{>{\centering}m{0.5\textwidth}|m{0.4\textwidth}}
      \multicolumn{2}{c}{Une architecture hybride}\\[0.4em]
      \hline~\\[0.4em]
      \begin{tikzpicture}[scale=.5]
        \tikzset{
          client/.style={draw,rounded corners=3pt,color=blue},
          server/.style={draw,color=red},
        }
          \foreach \n/\p in {A/{0,0},B/{8,0},C/{4,6.92}}
            \node[client](\n) at (\p) {Pair};
          \node[server] (D) at (4,2.31) {Oracle};
          \foreach \x/\y/\z in {A/B/C,B/A/C,C/A/B}
            \path[-latex,blue,bend left=10](\x) edge (\y)edge (\z);
          \foreach \x in {A,B,C}
            \draw[-latex,thick,red,dashed] (D) -- (\x);
      \end{tikzpicture}
      &
      \begin{minipage}{\linewidth}
        \begin{itemize}
            \item bla
            \item bla
            \item bla
        \end{itemize}
      \end{minipage}\\[0.8em]
      ~
    \end{tabular}
  \end{center}
\end{frame}
\end{document}