LateX: circuitikz e tabela lado a lado com minipágina

LateX: circuitikz e tabela lado a lado com minipágina

Estou tendo dificuldade com minipage: gostaria de colocar uma tabela lado a lado com um circuito (desenhado com o circuitikz), procurei e fiz como sugerido em outros posts (colocar %after \end{minipage}, usar [ht]no lugar de [h], ajustar o largura da minipágina, etc.), mas ainda não funciona, o que estou entendendo errado? Desde já, obrigado!

\documentclass[11pt,a4paper]{article}
\usepackage[utf8]{inputenc}%I included all the packages I used, if it matters 
\usepackage[italian]{babel}
\usepackage{amsmath}
\usepackage{amsfonts}
\usepackage{amssymb}
\usepackage{tikz}
\usepackage{graphicx}
\usepackage{indentfirst}
\usepackage{circuitikz}
\usepackage[left=2cm,right=2cm,top=2cm,bottom=2cm]{geometry}
\usepackage{listings}
\usepackage{caption}
\begin{table}[h]
\begin{minipage}{0.65\textwidth}
\begin{center} 
{\tiny \begin{tabular}{ccc||ccc} \hline 
$f_{j} [Hz]$ & $V_{in_{j}} \pm 0.06$ [V] & $V_{out_{j}}$ [V] & $f_{j}$ [Hz] & $V_{in_{j}} \pm 0.06$ [V] & $V_{out_{j}}$ [V] \\
\hline
\hline
-&-&-&-&-&-\\
\hline 
\end{tabular}}
\caption{blabla}  \label{T:data}
\end{center}
\end{minipage}%
\end{table}%
\begin{figure}[h]
\begin{minipage}{0.3\textwidth}
\begin{center}
{\tiny \begin{circuitikz} [scale=.8, transform shape]
      \draw (0,0)
      to[sV] (0, 1.4)     
      to[R=$R$] (1.4,1.4)
      to[C=$C$] (1.4,0)
      to(1.4,0)node[ground]{}
      to[short](0,0);
      \draw(1.4,1.4)
      to[short, -o] (1.4, 1.8) {} node[above = .5mm] {$V_{out}$};
      \draw (0,1.4)
      to[short, -o] (0,1.8) {} node[above =.5mm]{$V_{in}$};
    \end{circuitikz}}
\caption{bla}
\end{center}
\end{minipage}
\end{figure}

Responder1

Como comentei acima, gostaríamos de manter tudo o mais simples possível: por esse motivo optei por aninhar apenas um tabularem um centerambiente (para o qual você pode voltar figurese estiverclarovocê quer um carro alegórico). Então coloquei cada um dos seus dois conteúdos ( tabulare circuitikz) em uma célula do primeiro tabular.

O código a seguir pode ser bastante refinado (principalmente em relação às legendas). Eu apenas adicionei package array, permitindo centralizar o conteúdo nas duas colunas usando a sintaxe nas linhas marcadas como % 1, % 2, % 3.

\documentclass[11pt,a4paper]{article}
\usepackage[utf8]{inputenc}%I included all the packages I used, if it matters
\usepackage[italian]{babel}
\usepackage{amsmath}
\usepackage{amsfonts}
\usepackage{amssymb}
\usepackage{tikz}
\usepackage{graphicx}
\usepackage{indentfirst}
\usepackage{circuitikz}
\usepackage[left=2cm,right=2cm,top=2cm,bottom=2cm]{geometry}
\usepackage{listings}
\usepackage{caption}
\usepackage{array} % 1

\begin{document}

\newcolumntype{C}[1]{>{\centering}m{#1}} % 2

\begin{center}
    \begin{tabular}{C{.7\textwidth}C{.3\textwidth}} % 3
%
        {\tiny
            \begin{tabular}{ccc||ccc}
                \hline
                $f_{j} [Hz]$ & $V_{in_{j}} \pm 0.06$ [V] & $V_{out_{j}}$ [V] & $f_{j}$ [Hz] & $V_{in_{j}} \pm 0.06$ [V] & $V_{out_{j}}$ [V] \\
                \hline
                \hline
                -&-&-&-&-&-\\
                \hline
            \end{tabular}
        }\par%\par\phantom{ }\par
    blabla
%
    &
%
    \begin{circuitikz}[scale=.8, transform shape]
        \draw (0,0)
            to[sV] (0, 1.4)
            to[R=$R$] (1.4,1.4)
            to[C=$C$] (1.4,0)
            to(1.4,0)node[ground]{}
            to[short](0,0);
        \draw(1.4,1.4)
            to[short, -o] (1.4, 1.8) {} node[above = .5mm] {$V_{out}$};
        \draw (0,1.4)
            to[short, -o] (0,1.8) {} node[above =.5mm]{$V_{in}$};
    \end{circuitikz}\par
    bla
%
\end{tabular}

\end{center}
\end{document}

Isso produz:

captura de tela

informação relacionada