1

Do you know how I can draw this and implement it in an electrical circuit?

enter image description here

5
  • I not think that exist the symbols in your picture.
    – Sebastiano
    Commented May 15 at 21:55
  • If the given symbology exists. Commented May 16 at 1:12
  • 2
    You've posted code in previous questions, sometimes after it is requested. And several of your questions concern code for circuits, so it isn't obvious what you expect here exactly.
    – cfr
    Commented May 16 at 4:05
  • 3
    Those are symbols used on electro-mechanical instruments to indicate the type of measurement principle, they are not circuital symbols. So no, they are not in circuitikz; on the other hand, they should be easy to draw. Show your attempt (so we have an usage case example) and somebody'll help.
    – Rmano
    Commented May 16 at 6:12
  • 1
    The issue is simple to make definitions of drawings or pics and place them on a table, the difficult thing is to help someone who has a very bad attitude who has been given good answers and does not even accept them, and even responds and rewards himself.
    – J Leon V.
    Commented May 16 at 18:11

2 Answers 2

3

This is the answer:

\documentclass{article}

\usepackage{tikz}

\begin{document}

% Simbolo de Bobina Movil
\begin{tikzpicture}[name=BM]
    \draw (0,0) rectangle (3,1);
    \draw (-0.4,0) --++ (0,4) arc (180:0:2) coordinate(A) --++ (0,-4) --++ (0.4,0) --++ (0,4) arc (0:180:2.4) --++(0,-4) -- cycle;
\end{tikzpicture}
%
\hspace{2cm}
%
%Simcbolo de Hierro Movil
\begin{tikzpicture}[name=HM]
    \draw[fill= black] (0,0) rectangle (1,4);
    \draw[fill= black] (2,4) circle (0.3cm);
    \draw[fill= black] (2.4,-1) circle (0.3cm);
    \draw[ultra thick] (2.4,-1) -- (-0.5,0) -- (1.5,1) -- (-0.5,2) -- (1.5,3) -- (-0.5,3.5) -- (2,4);
\end{tikzpicture}

\end{document}

Image

2

Taking every single element of your table and include like a graphic without to draw nothing. I have drawn a generic circuit to have an idea.

\documentclass{standalone}
\usepackage{graphicx}
\usepackage{circuitikz}

\begin{document}
\begin{circuitikz}
    \draw (0,0) node[npn](npn){};
    \draw (npn.C) to[R,l=$R$] ++(0,2) node[vcc]{};
    \draw (npn.C) to[short,*-] ++(2,0) node[anchor=west](led){};
    \draw (npn.E) node[ground]{};
    Add your symbol.
    \node at (led) {\includegraphics[width=0.7cm]{example-image-c}};
\end{circuitikz}
\end{document}

enter image description here

3
  • 2
    @downvoter My was only an idea. To the usual hater: disappear.
    – Sebastiano
    Commented May 16 at 9:37
  • 1
    +1 :) Greetings Commented May 17 at 6:17
  • @Dr.ManuelKuehner I thank you for your comprehension. My sincerest regards.
    – Sebastiano
    Commented May 17 at 11:14

Not the answer you're looking for? Browse other questions tagged .