Seite 1 von 1

Grafiken und Tabellen durchnummerieren.

Verfasst: Di 8. Sep 2015, 21:21
von scid
Hallo,

aktuell stellt sich ein weiteres Problem in meiner Diss dar, und zwar würde ich gerne, dass die Grafiken und Tabellen durchnummeriert werden (Grafik 1, 2, 3, ... X). Aktuell die Nummerierung auf das Kapitel bezogen (1.1, 1.2, 1.3, ... 2.1, 2.2...). Habt ihr eine Idee, wie man das lösen könnte?

Vielen Dank vorweg!

scid
% MWE
\documentclass[a4paper, 12pt]{scrreprt} 
\usepackage[ngerman]{babel}	
\usepackage[applemac]{inputenc}
\usepackage[T1]{fontenc}
\usepackage[onehalfspacing]{setspace}
\usepackage{graphicx}

\begin{document}

\chapter{Kapitel1}

\begin{figure}[htbp]
	\centering
	\includegraphics[width=5cm]{Bilder/1}
	\caption{Wichtiges Bild.} 
	\label{fig:bild1}
\end{figure}
	
\begin{table}[h]
 \caption{Wichtige Tabelle}
 \begin{tabular}{l}
  Inhalt
 \end{tabular}
 \label{tab:tabelle1}
 \end{table}

\chapter{Kapitel2}

\begin{figure}[htbp]
	\centering
	\includegraphics[width=5cm]{Bilder/2}
	\caption{Sehr wichtiges Bild.}
	\label{fig:bild2}
\end{figure}

\begin{table}[h]
 \caption{Noch wichtigere Tabelle}
 \begin{tabular}{l}
  Inhalt
 \end{tabular}
 \label{tab:tabelle1}
 \end{table}

\end{document}

Verfasst: Di 8. Sep 2015, 22:01
von Johannes_B