I created custom float objects using the float package to draw stuff with tikz.
\usepackage{float}
\floatstyle{plain}
\newfloat{tkizfloat}{htb}{lof}
\floatname{tkizfloat}{Figure}
Is there any way of adding custom floats like this one created above to the \listoffigures without messing up the existing one?
And how to ensure that the custom float objects are counted the same way like normal figure objects, like that:
1.1 Example 1 (figure)
1.2 Example 2 (figure)
1.3 Example 3 (tikzfloat)
1.4 Example 4 (figure)
I'm currently adding them simply to the lof-file but that's a complete mess. Just see the screenshot below to understand the problems explained above.

Minimal working example for the screenshot above:
\documentclass{report}
\usepackage[english]{babel}
\usepackage{float}
\floatstyle{plain}
\newfloat{tkizfloat}{htb}{lof}
\floatname{tkizfloat}{Figure}
\usepackage{environ}
\usepackage{tikz}
\NewEnviron{elaboration}{
\par
\begin{tikzpicture}
\node[rectangle,minimum width=0.4\textwidth] (m)
{\begin{minipage}{0.5\textwidth}\BODY\end{minipage}};
\draw[dashed] (m.south west) rectangle (m.north east);
\end{tikzpicture} }
\usetikzlibrary{plotmarks}
\begin{document}
\listoffigures
\begin{tkizfloat}
\centering
\begin{tikzpicture}[y=4cm, x=.5cm,font=\sffamily]
\draw (0,0) -- coordinate (x axis mid) (20,0);
\draw (0,0) -- coordinate (y axis mid) (0,1);
\end{tikzpicture}
\caption{Some Chart}
\label{tkiz:example}
\end{tkizfloat}
\begin{figure}[htb]
\centering
\includegraphics[width=0.5\textwidth]{example.png}
\caption{Some Image}
\label{img:example}
\end{figure}
\end{document}



figureenvironment? – egreg Jun 3 '12 at 15:07figurecan contain only\includegraphicsand, conversely, that\includegraphicscan only go in afigureenvironment. Both are wrong. – egreg Jun 3 '12 at 15:27