调整 circuitikz 中的一些标签

调整 circuitikz 中的一些标签

以下产生输出非常接近我想要的:

\begin{circuitikz}
    \draw
        (0,0) to[short,l=2.95 GHz] (0,0)
              to[bandpass,>,l=BPF,a=2.95 GHz] ++(3.5,0)
              node[inputarrow]{}
              node[mixer,anchor=west] (mix) {};
    \draw
        (mix.east) to[lowpass,>,l=LPF,a=100 MHz] ++(3.5,0)
                   node[inputarrow]{ADC};
    \draw (mix.south) node[inputarrow,rotate=90] (loarrow) {} -- ++(0,-1.5)
                      to[short,l=3 GHz] ++(0,0);
\end{circuitikz}

问题是文本“ADC”偏移有点高,并且与输入处的“2.95 GHz”文本不对称。

类似地,“3 GHz”文本向左偏移,而不是相对于其相关箭头居中。

我怎样才能更好地对齐这些标签?

答案1

大多数 circuitikz 节点不是设计来处理文本的。

请注意,所有标签实际上都是单独的节点。

\documentclass{standalone}
\usepackage{circuitikz}

\begin{document}

\begin{circuitikz}
    \draw
        (0,0) to[short,l=2.95 GHz] (0,0)
              to[bandpass,>,l=BPF,a=2.95 GHz] ++(3.5,0)
              node[inputarrow]{}
              node[mixer,anchor=west] (mix) {};
    \draw
        (mix.east) to[lowpass,>,l=LPF,a=100 MHz] ++(3.5,0)
                   node[inputarrow]{} node[right]{ADC};
    \draw (mix.south) node[inputarrow,rotate=90] (loarrow) {} -- ++(0,-1.5)
                      node[below]{3 GHz};
\end{circuitikz}

\end{document}

演示

相关内容