3

Some components in Circuitikz use nodes intead of path decorations, so transforming them with invert or mirror does not work. For example, the spdt switch in the image always has its single wire side on the left, even if the whole image is flipped using xscale=-1 as a tikzpicture environment property.

spdt switch

Example code:

\begin{circuitikz}
\draw (5, 0) to (0, 0) node[spdt] {};
\begin{circuitikz}
rusins
  • 191
  • 2
    Welcome to TeX.SX! Can you please add some code to show what you're dealing with? – egreg Feb 09 '18 at 22:23
  • 1
    Please can you make your code compilable? Especially if the answer you've got doesn't help, something people can compile makes things a lot easier. – cfr Feb 10 '18 at 03:55

1 Answers1

6

Nodes can be rotated using the node[rotate=90] {} property (replace 90 with the angle you want, can be negative) and flipped in a certain direction by using either node[xscale=-1] or node[yscale=-1] or both. This answer provides a list of all possible node / style attributes in Tikz.

rusins
  • 191