LateX: 미니페이지와 함께 있는 Circuitikz 및 테이블

LateX: 미니페이지와 함께 있는 Circuitikz 및 테이블

미니페이지 때문에 어려움을 겪고 있습니다. 회로(circuitikz로 그린)와 테이블을 나란히 놓고 싶은데, 찾아보고 다른 게시물에서 제안한 대로 했습니다(다음에 넣기 %, \end{minipage}대신 사용하기 [ht], [h]조정하기). 미니페이지 너비 등) 그래도 작동하지 않습니다. 무엇이 잘못되었나요? 미리 감사드립니다!

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

답변1

위에서 언급했듯이 모든 것을 가능한 한 단순하게 유지하고 싶습니다. 이러한 이유로 저는 하나만 tabular하나의 환경에 중첩하기로 선택했습니다( 필요한 경우 center다시 전환할 수 있음).figure확신하는당신은 플로트를 원합니다). 그런 다음 두 내용 ( tabular및 ) 을 각각 circuitikz전자의 셀에 넣습니다 tabular.

다음 코드는 상당히 개선될 수 있습니다(특히 캡션과 관련하여). , , array로 표시된 줄의 구문을 사용하여 두 열의 내용을 중앙에 배치할 수 있도록 package 만 추가했습니다 .% 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}

이는 다음을 출력합니다:

스크린샷

관련 정보