von Epllus » Fr 10. Mai 2013, 14:09
Da du kein
Minimalbeispiel gemacht hast, nehme ich mal an, dass du eine KOMA-Script Klasse verwendest.
Ich habe es jetzt so konfiguriert, dass nach Bild 3.2 die Tabelle 3.3 und danach Bild 3.4 kommt.
\documentclass[ngerman]{scrartcl}
\usepackage{babel}
\usepackage{mwe}
% Findest du im scrguide
\renewcommand*{\figureformat}{%
% Nummer von figure=table, danach figure um eins erhöhen.
\setcounter{figure}{\value{table}}\stepcounter{figure}%
\figurename~\arabic{section}.\arabic{figure}\autodot}
\renewcommand*{\tableformat}{%
% Zuerst Nummer table= figure, dann table erhöhen.
\setcounter{table}{\value{figure}}\stepcounter{table}%
\tablename~\arabic{section}.\arabic{table}\autodot}
\begin{document}
\begin{figure}[htb] % figure placement: here, top, bottom, or page
\centering
\includegraphics[width=0.5\textwidth]{example-image-a}
\caption{example caption}
\label{fig:example}
\end{figure}
\begin{table}[h]
\centering
\caption{blabla}
\begin{tabular}{ c | c }
Algorithmus & Kompetitivität\\
\hline
\hline
$NB$ & --\\
.....
\end{tabular}
\end{table}
\begin{figure}[htb] % figure placement: here, top, bottom, or page
\centering
\includegraphics[width=0.5\textwidth]{example-image-a}
\caption{example caption}
\label{fig:example}
\end{figure}
\end{document}
Hoffe es hilft
Epllus
Da du kein [url=http://www.golatex.de/wiki/Minimalbeispiel]Minimalbeispiel[/url] gemacht hast, nehme ich mal an, dass du eine KOMA-Script Klasse verwendest.
Ich habe es jetzt so konfiguriert, dass nach Bild 3.2 die Tabelle 3.3 und danach Bild 3.4 kommt.
[code]\documentclass[ngerman]{scrartcl}
\usepackage{babel}
\usepackage{mwe}
% Findest du im scrguide
\renewcommand*{\figureformat}{%
% Nummer von figure=table, danach figure um eins erhöhen.
\setcounter{figure}{\value{table}}\stepcounter{figure}%
\figurename~\arabic{section}.\arabic{figure}\autodot}
\renewcommand*{\tableformat}{%
% Zuerst Nummer table= figure, dann table erhöhen.
\setcounter{table}{\value{figure}}\stepcounter{table}%
\tablename~\arabic{section}.\arabic{table}\autodot}
\begin{document}
\begin{figure}[htb] % figure placement: here, top, bottom, or page
\centering
\includegraphics[width=0.5\textwidth]{example-image-a}
\caption{example caption}
\label{fig:example}
\end{figure}
\begin{table}[h]
\centering
\caption{blabla}
\begin{tabular}{ c | c }
Algorithmus & Kompetitivität\\
\hline
\hline
$NB$ & --\\
.....
\end{tabular}
\end{table}
\begin{figure}[htb] % figure placement: here, top, bottom, or page
\centering
\includegraphics[width=0.5\textwidth]{example-image-a}
\caption{example caption}
\label{fig:example}
\end{figure}
\end{document}
[/code]
Hoffe es hilft
Epllus