Estou tentando colocar todos os valores dos componentes no lado direito do circuito. Já vi soluções com o uso de nós de rótulo no circuitikz, mas prefiro separar os dois.
Só consegui pensar no seguinte. Preciso colocar as etiquetas na parte superior ou centralizar verticalmente ao lado do circuito.
\documentclass{article}
\usepackage{amsmath}
\usepackage{circuitikz}
\begin{document}
\begin{table}[h]
\centering
\begin{tabular}{|c|c|}
\begin{circuitikz}[european]
\draw (0,0)
node[tlground]{} % The ground
to[V, v^<=$U_0$] (0,2) % The voltage source
to[C, l=$C_1$] (2,2) % The capacitor
to[R=$R_B$] (2,5); % The resistor
\draw
(4,2) node[npn, tr circle] (Q1) {} % The transistor
(Q1.base) to[short] (2,2) % The short
(Q1.collector) to[R=$R_C$] (4,5) % The resistor
(4,3) to[short] (5,3) % The short
node[label={[font=\footnotesize]right:$V_{out}$}] {}
(Q1.emitter) to[short] (4,0) % The short
node[tlground]{};
\draw (0,5)
node[label={[font=\footnotesize]left:$+V_{cc}$}] {}
to[short] (5,5);
\end{circuitikz}
&
% Add labels for component values on the right side
\begin{tabular}[t]{l}
$R_1 = 1\text{k}\Omega$\\
$C_1 = 10\mu\text{F}$\\
$L_1 = 100\text{mH}$
\end{tabular}
\end{tabular}
\end{table}
\end{document}
Responder1
Ah, entendi. O que normalmente faço é escolher um elemento no desenho do circuito, nomeá-lo (nomeando o nó ou o elemento) e, em seguida, alinhar a tabela à linha de base desse elemento. Por exemplo, a seguir, a tabela está alinhada com o nó +V_CC:
\documentclass{article}
\usepackage{amsmath}
\usepackage{circuitikz}
\begin{document}
\begin{table}[h]
\centering
\begin{tabular}{|c|c|}
\begin{circuitikz}[european, baseline=(REF.base)]
\draw (0,0)
node[tlground]{} % The ground
to[V, v^<=$U_0$] (0,2) % The voltage source
to[C, l=$C_1$] (2,2) % The capacitor
to[R=$R_B$] (2,5); % The resistor
\draw
(4,2) node[npn, tr circle] (Q1) {} % The transistor
(Q1.base) to[short] (2,2) % The short
(Q1.collector) to[R=$R_C$] (4,5) % The resistor
(4,3) to[short] (5,3) % The short
node[label={[font=\footnotesize]right:$V_{out}$}] {}
(Q1.emitter) to[short] (4,0) % The short
node[tlground]{};
\draw (0,5)
node[label={[font=\footnotesize]left:$+V_{cc}$}](REF) {}
to[short] (5,5);
\end{circuitikz}
&
% Add labels for component values on the right side
\begin{tabular}[t]{l}
$R_1 = 1\text{k}\Omega$\\
$C_1 = 10\mu\text{F}$\\
$L_1 = 100\text{mH}$
\end{tabular}
\end{tabular}
\end{table}
\end{document}
Ou, por exemplo, com o rótulo R_C:
\documentclass{article}
\usepackage{amsmath}
\usepackage{circuitikz}
\begin{document}
\begin{table}[h]
\centering
\begin{tabular}{|c|c|}
\begin{circuitikz}[european, baseline=(REFlabel.base)]
\draw (0,0)
node[tlground]{} % The ground
to[V, v^<=$U_0$] (0,2) % The voltage source
to[C, l=$C_1$] (2,2) % The capacitor
to[R=$R_B$] (2,5); % The resistor
\draw
(4,2) node[npn, tr circle] (Q1) {} % The transistor
(Q1.base) to[short] (2,2) % The short
(Q1.collector) to[R=$R_C$, name=REF] (4,5) % The resistor
(4,3) to[short] (5,3) % The short
node[label={[font=\footnotesize]right:$V_{out}$}] {}
(Q1.emitter) to[short] (4,0) % The short
node[tlground]{};
\draw (0,5)
node[label={[font=\footnotesize]left:$+V_{cc}$}] {}
to[short] (5,5);
\end{circuitikz}
&
% Add labels for component values on the right side
\begin{tabular}[t]{l}
$R_1 = 1\text{k}\Omega$\\
$C_1 = 10\mu\text{F}$\\
$L_1 = 100\text{mH}$
\end{tabular}
\end{tabular}
\end{table}
\end{document}
Aliás: sugiro calorosamente usar o siunitx
pacote para unidades de medida. Esse μ em microfarad deverianãoestar no modo matemática...