für meine DA will ich in einer Tikz-Umgebung eine Box einbinden, in der dann Rechenbeispiele enthalten sind.
Dazu soll jede Beispielbox analog zum Beispiel einer Tabelle nummeriert werden, jedoch habe ich das leider noch nicht richtig hinbekommen.
Vielleicht könnt ihr euch das mal anschauen:
Warum nummeriert er die Boxen nicht richtig? Warum steht oben immer nur "10"?
\documentclass{article} \usepackage{tikz} \usetikzlibrary{shapes,snakes} \usepackage{amsmath,amssymb} \newcounter{beispiel} \def\thebeispiel{\thesection\arabic{beispiel}} \begin{document} \section{fdf} % Define box and box title style \tikzstyle{mybox} = [draw=red, fill=blue!20, very thick, rectangle, rounded corners, inner sep=10pt, inner ysep=20pt] \tikzstyle{fancytitle} =[fill=red, text=white] \begin{tikzpicture} \node [mybox] (box){% \begin{minipage}{0.50\textwidth} To calculate the horizontal position the kinematic differential equations are needed: \begin{align} \dot{n} &= u\cos\psi -v\sin\psi \\ \dot{e} &= u\sin\psi + v\cos\psi \end{align} For small angles the following approximation can be used: \begin{align} \dot{n} &= u -v\delta_\psi \\ \dot{e} &= u\delta_\psi + v \end{align} \end{minipage} }; \node[fancytitle, right=10pt] at (box.north west) {A fancy title\thebeispiel}; \end{tikzpicture}% \begin{tikzpicture} \node [mybox] (box){% \begin{minipage}{0.50\textwidth} To calculate the horizontal position the kinematic differential equations are needed: \begin{align} \dot{n} &= u\cos\psi -v\sin\psi \\ \dot{e} &= u\sin\psi + v\cos\psi \end{align} For small angles the following approximation can be used: \begin{align} \dot{n} &= u -v\delta_\psi \\ \dot{e} &= u\delta_\psi + v \end{align} \end{minipage} }; \node[fancytitle, right=10pt] at (box.north west) {A fancy title\thebeispiel}; \end{tikzpicture}% \section{fdsfd} \section{fdf} \end{document}