Colocar una imagen tikz y una tabular una al lado de la otra

Colocar una imagen tikz y una tabular una al lado de la otra

Estoy intentando colocar una tabla simple y una imagen tikz una al lado de la otra. No parece funcionar en absoluto y se apilan uno encima del otro.

\documentclass[11pt]{article}
\usepackage[linesnumbered,ruled,vlined]{algorithm2e}
\usepackage{amssymb}
\usepackage{booktabs}
\usepackage{tikz}
\usepackage{float}
\usepackage{graphicx}
\begin{document}

\begin{figure}[ht]
\centering
\noindent\begin{minipage}{.5\linewidth}
\centering
\begin{tikzpicture}
\node[draw] (A1) at (0,0) {$A_1$};
\node[draw] (A2) at (1.5,0) {$A_2$};
\node[draw] (A3) at (3,0) {$A_3$};

\draw[->] (A1) to (A2);
\draw[bend left, ->] (A2) to (A3);
\draw[bend left, ->] (A3) to (A2);

\end{tikzpicture}
\end{minipage}

\begin{minipage}{.5\linewidth}
\begin{tabular}{l | c c c}
\toprule
 Attacking/Attacked & $A_1$  & $A_2$  & $A_3$ \\ \midrule
 $A_1$  & 0  & 1 & 0 \\
 $A_2$  & 0  & 0 & 1 \\
 $A_3$  & 0  & 1 & 0 \\
 \toprule
 $\sum Attacked$  & 0  & 2 & 1 \\
 \bottomrule
\end{tabular}
\end{minipage}
\caption{Some matrix}   
\label{graph:exampleMatrix}
\end{figure}
\end{document}

Intenté usar minipágina, pero mi imagen se apila.

ingrese la descripción de la imagen aquí

Respuesta1

Sugiero utilizar tabularel entorno en lugar de minipages:

\documentclass[11pt]{article}
\usepackage{booktabs, makecell}
\usepackage{tikz}
\begin{document}

\begin{figure}[ht]
    \centering
    \setcellgapes{5pt}
    \makegapedcells 
    \setlength\belowrulesep{0pt}   
    \setlength\aboverulesep{0pt}
\begin{tabular}{c@{\qquad}c}
    \begin{tikzpicture}
\node[draw] (A1) at (0,0) {$A_1$};
\node[draw] (A2) at (1.5,0) {$A_2$};
\node[draw] (A3) at (3,0) {$A_3$};
%
\draw[->] (A1) to (A2);
\draw[bend left, ->] (A2) to (A3);
\draw[bend left, ->] (A3) to (A2);
\end{tikzpicture}
    &
    \begin{tabular}{l | c c c }
    \toprule
Attacking/Attacked  & $A_1$ & $A_2$ & $A_3$ \\ \midrule
 $A_1$              & 0     & 1     & 0     \\
 $A_2$              & 0     & 0     & 1     \\
 $A_3$              & 0     & 1     & 0     \\
 \toprule
 $\sum Attacked$    & 0     & 2     & 1     \\
 \bottomrule
    \end{tabular}
\end{tabular}
\caption{Some matrix}
    \label{graph:exampleMatrix}
\end{figure}
\end{document}

Para el espacio vertical en las celdas, agrego macro \makegapedcells, establezco espacios abiertos 5pty elimino espacios verticales alrededor de las reglas booktabs.

ingrese la descripción de la imagen aquí

información relacionada