Since this is my first question I hope that the Example is short and enough to reproduce my problem. I am creating an Appendix and I want to "subnumerate" Definitions. Actual it looks like this
\documentclass[a4paper, bibtotocnumbered,liststotoc,12pt]{scrartcl}
\usepackage[T1]{fontenc}
\usepackage[latin1]{inputenc}
\usepackage[ngerman]{babel}
\usepackage{amsmath}
\usepackage{amssymb}
\usepackage{amsthm}
\usepackage{mathtools}
\newtheorem{definition}{Definition}
\begin{document}
\appendix
\section{Anhang}
\subsection{Mathematischer Anhang}
\subsubsection*{Definitionen}
\begin{definition}[Subgradienten und -differentiale]
Sei $f:\mathbb{R}^n \rightarrow \mathbb{R}$ eine konvexe (aber nicht zwingend differenzierbare) Funktion, dann ist der Vektor $s\in \mathbb{R}^{n}$ der Subgradient von $f$ an der Stelle $x \in \mathbb{R}^{n} $, wenn gilt:
\begin{align*}
f(y) \geq f(x) + s^T(y-x)
\end{align*}
Die Menge aller Subgradienten einer konvexen Funktion $f$ an der Stelle $x \in \mathbb{R}^{n} $ wird Subdifferential $\partial f(x)$ genannt. \\
Bei einer konvexen und differenzierbaren Funktion f ist der Subgradient gleich dem Gradienten $\partial f(x)=\nabla f(x)$.
\end{definition}
\end{document}
My aim is to subnumerate the last sentence in Definition 1. So the Output should be:
Definition 1 text
Definition 1.1 Bei einer konvexen ..
Note that the numeration doesnt depend on a specific chapter in my text. So its not my goal to start a new numeration with each chapter.



\newcounter{subdefinition}[definition]and an environment that uses\thesubdefinition. – TeXnician Jun 30 '18 at 08:45\refstepcounter{subdefinition}will do it. – TeXnician Jun 30 '18 at 09:04