Colocar uma imagem tikz e uma tabela lado a lado

Colocar uma imagem tikz e uma tabela lado a lado

Estou tentando colocar uma mesa simples e uma imagem tikz lado a lado. Parece que não está funcionando e eles ficam empilhados um em cima do outro.

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

Tentei usar minipágina, mas minha imagem fica empilhada.

insira a descrição da imagem aqui

Responder1

Eu sugiro usar tabularambiente em vez 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 espaço vertical nas células, adiciono macro \makegapedcells, defino gabs 5pte removo espaços verticais em torno das regras de booktabs.

insira a descrição da imagem aqui

informação relacionada