如何改变可变电阻刮水器/箭头尺寸?

如何改变可变电阻刮水器/箭头尺寸?

我如何更改可变电阻刮水器/箭头尺寸?可能吗?似乎太小了(R3)。

\documentclass[preview,border=12pt,12pt, varwidth=\maxdimen]{standalone}
\usepackage[europeanresistors,europeaninductors]{circuitikz}
\begin{document}
    
    \begin{circuitikz}[european, scale=1]
        
        
        
        \draw (0,0) to[R]  node[xshift=30,yshift=-37]{$\frac{R_{1}}{15,75\;K\Omega}$} (0,4);
        
        \draw (0,4) to[american inductor, *-*] node[xshift=-35,yshift=-15]{$\frac{L_{1}}{15,75\;mH}$} (4,4);
        
        \draw (4,4) to[american inductor] node[xshift=32,yshift=35]{$\frac{L_{2}}{7,875\;mH}$} (4,0);
        
        \draw (0,0) to[short, -*] (4,0);
        
        \draw (4,4) to[C] node[xshift=-15,yshift=-20]{$\frac{C_{2}}{15,75\;nF}$} (8,4);
        
        \draw (8,4) to[R]  node[xshift=30,yshift=37]{$\frac{R_{2}}{78,75\;K\Omega}$} (8,0);
        
        \draw (4,0) to[short, -*] (8,0);
        
        \draw (11,0) to[pR, mirror, name=R3]  node[xshift=30,yshift=-50]{$\frac{R_{3}}{13,5\;K\Omega}$} coordinate(tapR) (11,4);
        \draw (R3.wiper) --  ++ (0.2,0)  |- (tapR) to[short, -*] (tapR);
        
        \draw (8,0) -- (11,0);
        
        \draw (11,4) to[short, *-*] (8,4);
        
        \draw (0,4) -- (0,6) to[C] node[xshift=-55,yshift=-15]{$\frac{C_{1}}{31,5\;nF}$} (11,6) -- (11,4);
    
    
        
    \end{circuitikz}
\end{document}  

在此处输入图片描述

答案1

使用真实的最小例子:

\documentclass[border=10pt]{standalone}
\usepackage[T1]{fontenc}
\usepackage{circuitikz}
\begin{document}
\begin{tikzpicture}[european]
    \draw (0,2) to[pR, name=a] ++(3,0) |- (a.wiper);
    \ctikzset{wiper end arrow={Latex[width=4pt]}}
    \draw (0,0) to[pR, name=b] ++(3,0) |- (b.wiper);
\end{tikzpicture}
\end{document}

您将获得:

在此处输入图片描述

(由于okular抗锯齿效果太差,导致线条粗细不均,抱歉)。

arrows.meta您可以使用Ti标准包中的任何箭头Z;描述尺寸选项这里

它被隐藏了

相关内容