Wenn man die Fehler im Beispiel entfernt und – wie von @Johannes angeregt – zwischen den Teilabbildungen keinen Absatz macht, dann stehen die Bilder bereits nebeneinander:
\documentclass[12pt, bibliography=totocnumbered]{scrartcl}
\usepackage{subcaption}
\usepackage{pgfplots}
\usepackage{siunitx,tikz}
\usetikzlibrary{circuits.ee.IEC}
\usepackage{showframe}% Zu Demonstrationszwecken
\begin{document}
\begin{figure}
\centering
\begin{subfigure}{0.3\textwidth}
\begin{tikzpicture}[circuit ee IEC]
\draw (0,0) to [resistor={info=\SI{100}{\ohm}}] (3,0);
\end{tikzpicture}
\end{subfigure}
\begin{subfigure}{0.3\textwidth}
\begin{tikzpicture}[circuit ee IEC]
\draw (1,0) to [resistor={info=\SI{100}{\ohm}}] (4,0)
(1,2) to [capacitor={info=\SI{1}{\milli\farad}}] (4,2)
(1,1) node[contact] {}
(4,1) node[contact] {}
(1,2) -- (1,0)
(4,2) -- (4,0)
(1,0) -- (1,1)
(4,1) -- (5,1)
(0,1) -- (1,1);
\end{tikzpicture}
\end{subfigure}
\begin{subfigure}{0.3\textwidth}
\begin{tikzpicture}[circuit ee IEC]
\draw (0,1) to [resistor={info=\SI{100}{\ohm}}] (3,1) node[contact] {} --
(3,2) to [capacitor={info=\SI{1}{\milli\farad}}] (6,2) -- (6,1)
(3,1) -- (3,0) to [resistor={info=$R_{anode}$}] (6,0) -- (6,1)
(6,1) node[contact] {}
(6,1) -- (7,1);
\end{tikzpicture}
\end{subfigure}
\caption{equivalent circuit diagrams of used dummies}
\label{esbdummies}
\end{figure}
\end{document}
![mit subfigure][1]
Wie man durch die Verwendung von [`showframe`](http://ctan.org/pkg/showframe) leicht sehen kann, ist allerdings das rechte Teilbild breiter als `0.3\textwidth` (dafür sind die anderen schmaler), so dass man die Breiten-Angaben bei `subfigure` noch korrigieren sollte.
Als Alternative bietet sich an, die `\subcaptionbox` zu verwenden, das die Breite automatisch bestimmt:
\documentclass[12pt]{scrartcl}
\usepackage{subcaption}
\usepackage{pgfplots}
\usepackage{siunitx,tikz}
\usetikzlibrary{circuits.ee.IEC}
\usepackage{showframe}
\begin{document}
\begin{figure}
\centering
\subcaptionbox*{}{%
\begin{tikzpicture}[circuit ee IEC]
\draw (0,0) to [resistor={info=\SI{100}{\ohm}}] (3,0);
\end{tikzpicture}
}
\subcaptionbox*{}{%
\begin{tikzpicture}[circuit ee IEC]
\draw (1,0) to [resistor={info=\SI{100}{\ohm}}] (4,0)
(1,2) to [capacitor={info=\SI{1}{\milli\farad}}] (4,2)
(1,1) node[contact] {}
(4,1) node[contact] {}
(1,2) -- (1,0)
(4,2) -- (4,0)
(1,0) -- (1,1)
(4,1) -- (5,1)
(0,1) -- (1,1);
\end{tikzpicture}
}
\subcaptionbox*{}{%
\begin{tikzpicture}[circuit ee IEC]
\draw (0,1) to [resistor={info=\SI{100}{\ohm}}] (3,1) node[contact] {} --
(3,2) to [capacitor={info=\SI{1}{\milli\farad}}] (6,2) -- (6,1)
(3,1) -- (3,0) to [resistor={info=$R_{anode}$}] (6,0) -- (6,1)
(6,1) node[contact] {}
(6,1) -- (7,1);
\end{tikzpicture}
}
\caption{equivalent circuit diagrams of used dummies}
\label{esbdummies}
\end{figure}
\end{document}
![\subcaptionbox statt subfigure][2]
Wie man sieht, wird dabei aber nicht mehr automatisch vertikal zentriert, sondern unten an der Grundlinie ausgerichtet. Eine allgemeine Möglichkeit, Material vertikal zu verschieben ist die Verwendung von [`\\raisebox`](http://www.golatex.de/wiki/%5Craisebox):
\documentclass[12pt]{scrartcl}
\usepackage{subcaption}
\usepackage{pgfplots}
\usepackage{siunitx,tikz}
\usetikzlibrary{circuits.ee.IEC}
\usepackage{showframe}
\begin{document}
\begin{figure}
\centering
\subcaptionbox*{}{%
\raisebox{1cm}{\begin{tikzpicture}[circuit ee IEC]
\draw (0,0) to [resistor={info=\SI{100}{\ohm}}] (3,0);
\end{tikzpicture}}
}
\subcaptionbox*{}{%
\begin{tikzpicture}[circuit ee IEC]
\draw (1,0) to [resistor={info=\SI{100}{\ohm}}] (4,0)
(1,2) to [capacitor={info=\SI{1}{\milli\farad}}] (4,2)
(1,1) node[contact] {}
(4,1) node[contact] {}
(1,2) -- (1,0)
(4,2) -- (4,0)
(1,0) -- (1,1)
(4,1) -- (5,1)
(0,1) -- (1,1);
\end{tikzpicture}
}
\subcaptionbox*{}{%
\begin{tikzpicture}[circuit ee IEC]
\draw (0,1) to [resistor={info=\SI{100}{\ohm}}] (3,1) node[contact] {} --
(3,2) to [capacitor={info=\SI{1}{\milli\farad}}] (6,2) -- (6,1)
(3,1) -- (3,0) to [resistor={info=$R_{anode}$}] (6,0) -- (6,1)
(6,1) node[contact] {}
(6,1) -- (7,1);
\end{tikzpicture}
}
\caption{equivalent circuit diagrams of used dummies}
\label{esbdummies}
\end{figure}
\end{document}
![mit \raisebox][3]
Wie so oft, gibt es bei LaTeX natürlich diverse weitere Möglichkeiten.
Übrigens: [Wenn das Ganze nicht gleiten soll](http://texwelt.de/wissen/fragen/3427/), ist das einfachste, keine Gleitumgebung zu verwenden:
\documentclass[12pt]{scrartcl}
\usepackage{subcaption}
\usepackage{pgfplots}
\usepackage{siunitx,tikz}
\usetikzlibrary{circuits.ee.IEC}
\usepackage{showframe}
\begin{document}
\noindent\begin{minipage}{\linewidth}
\captionsetup{type=figure}% caption mitteilen, dass es sich um eine figure handelt
\subcaptionbox*{}{%
\raisebox{1cm}{\begin{tikzpicture}[circuit ee IEC]
\draw (0,0) to [resistor={info=\SI{100}{\ohm}}] (3,0);
\end{tikzpicture}}
}
\subcaptionbox*{}{%
\begin{tikzpicture}[circuit ee IEC]
\draw (1,0) to [resistor={info=\SI{100}{\ohm}}] (4,0)
(1,2) to [capacitor={info=\SI{1}{\milli\farad}}] (4,2)
(1,1) node[contact] {}
(4,1) node[contact] {}
(1,2) -- (1,0)
(4,2) -- (4,0)
(1,0) -- (1,1)
(4,1) -- (5,1)
(0,1) -- (1,1);
\end{tikzpicture}
}
\subcaptionbox*{}{%
\begin{tikzpicture}[circuit ee IEC]
\draw (0,1) to [resistor={info=\SI{100}{\ohm}}] (3,1) node[contact] {} --
(3,2) to [capacitor={info=\SI{1}{\milli\farad}}] (6,2) -- (6,1)
(3,1) -- (3,0) to [resistor={info=$R_{anode}$}] (6,0) -- (6,1)
(6,1) node[contact] {}
(6,1) -- (7,1);
\end{tikzpicture}
}
\caption{equivalent circuit diagrams of used dummies}\label{esbdummies}
\end{minipage}
\end{document}
Zum Fast zum Schluss sei noch einmal darauf hingewiesen, dass es LaTeX reichlich egal ist, was man in eine Gleitumgebung oder eine `subfigure` oder `\subcaptionbox` packt. Das sind alles nur große Kisten. Auf denen steht zwar vielleicht »Badezimmer«. Man kann aber trotzdem auch das Inventar des Kinderzimmers hinein packen. Was sinnvoll ist, ist also eine Sache des Anwenders.
Und ganz zum Schluss dann noch die von @esdd angeregte Lösung mit der kleinsten Anzahl an benötigten Paketen:
\documentclass[12pt]{scrartcl}
\usepackage{siunitx,tikz}
\usetikzlibrary{circuits.ee.IEC}
\usepackage{showframe}
\begin{document}
\noindent\begin{minipage}{\linewidth}
\hspace*{\fill}%
\raisebox{1cm}{\begin{tikzpicture}[circuit ee IEC]
\draw (0,0) to [resistor={info=\SI{100}{\ohm}}] (3,0);
\end{tikzpicture}}\hfill
\begin{tikzpicture}[circuit ee IEC]
\draw (1,0) to [resistor={info=\SI{100}{\ohm}}] (4,0)
(1,2) to [capacitor={info=\SI{1}{\milli\farad}}] (4,2)
(1,1) node[contact] {}
(4,1) node[contact] {}
(1,2) -- (1,0)
(4,2) -- (4,0)
(1,0) -- (1,1)
(4,1) -- (5,1)
(0,1) -- (1,1);
\end{tikzpicture}\hfill
\begin{tikzpicture}[circuit ee IEC]
\draw (0,1) to [resistor={info=\SI{100}{\ohm}}] (3,1) node[contact] {} --
(3,2) to [capacitor={info=\SI{1}{\milli\farad}}] (6,2) -- (6,1)
(3,1) -- (3,0) to [resistor={info=$R_{anode}$}] (6,0) -- (6,1)
(6,1) node[contact] {}
(6,1) -- (7,1);
\end{tikzpicture}
\hspace*{\fill}
\captionof{figure}{equivalent circuit diagrams of used dummies}\label{esbdummies}
\end{minipage}
\end{document}
Natürlich geht das auch mit Gleitumgebung, indem man die äußere `minipage`- wieder durch eine `figure`-Umgebung und `\captionof{figure}` wieder durch `\caption` ersetzt.
[1]: http://texwelt.de/wissen/upfiles/test17_4.png
[2]: http://texwelt.de/wissen/upfiles/test18_4.png
[3]: http://texwelt.de/wissen/upfiles/test19_4.png