PDA

Archiv verlassen und diese Seite im Standarddesign anzeigen : circuitikz: mirror tripoles



bene
13-08-2012, 08:47
Nutz jemand von euch circuitikz? ich versuche gerade einen tripole zu spiegeln, das funktioniert aber wohl nicht und ich hab keine info gefunden, wie das geht.

Konkret geht es um einen op amp. Als workaround hab ich jetzt die library bearbeitet und und ein op amp mir erstellt, der mir + und - vertauscht.

Folgendes Beispiel resultiert in die Fehlermeldung "! Package pgfkeys Error: I do not know the key '/tikz/mirror' and I am going to ignore it. Perhaps you misspelled it."


\documentclass{scrartcl}
\usepackage{circuitikz}
\begin{document}
\begin{tikzpicture}
\draw (0,0) node[op amp] {};
\end{tikzpicture}
\begin{tikzpicture}
\draw (0,0) node[op amp,mirror] {};
\end{tikzpicture}
\end{document}

u_fischer
13-08-2012, 09:34
\documentclass{scrartcl}
\usepackage{circuitikz}
\begin{document}
\begin{tikzpicture}
\draw (0,0) node[op amp] {};
\end{tikzpicture}
\begin{tikzpicture}
\draw (0,0) node[op amp,yscale=-1] {};
\end{tikzpicture}
\end{document}

bene
13-08-2012, 09:50
super, auf die idee bin ich nicht gekommen!