What do you think was the link for?Hanneke wrote:Not sure if this is what you mean by an MWE, but however; [...]
According to the style declaration the counter of the »opgave« theorem like environment contains the section counter. So you have to use the \section command first to have a full enumeration for this environment.
Code: Select all
\documentclass[12pt,a4paper,dutch]{article}
\usepackage[T1]{fontenc}
\usepackage[latin1]{inputenc}
\usepackage{babel}
\usepackage[includeheadfoot,margin=2cm]{geometry}
\usepackage{amsmath}
\usepackage{amsfonts,amssymb,amsthm}
\theoremstyle{plain}
\newtheorem{opgave}{Opgave}[section]
\begin{document}
\section{Secton One}
\setcounter{opgave}{3}
\begin{opgave}
Show that $|b| \leq a$ if and only if $ -a \leq b \leq a$.
\end{opgave}
\end{document}