[Tex/LaTex] How would you draw “current in to page” and “current out of page” symbols

symbols

So I need to draw a diagram that shows current densities, using the standard symbols for current going in to page and current out of page as seen below. What is the best way to implement this?

enter image description here

Best Answer

For current symbols you can use math symbols \otimes and \odot :). For more you should provide Minimal Working Example. Knowing it, I (or some one other) can suggest how to draw this symbols.

Edit: In case of use ciruitikz package, you can include theses symbols in node. For example

\node[font=\huge,
      label={[align=left]right:CURRENT\\ FLOW OUT}] at (<coordinete>) {$\otimes$};
\node[font=\huge,
      label={[align=left]right:CURRENT\\ FLOW IN}] at (<coordinete>) {$\odot$};

or alternatively as suggested Alex:

\node[label={[align=left]right:CURRENT\\ FLOW OUT}] at (<coordinete>) {$\bigotimes$};
\node[label={[align=left]right:CURRENT\\ FLOW IN}] at (<coordinete>) {$\bigodot$};
Related Question