Is there a pre-defined theorem-environment for a theorem having the qed-symbol at its end?
Something like the proof-environment but with the \theoremstyle{plain}?
\documentclass{scrartcl}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage[ngerman]{babel}
\usepackage{amssymb,amsmath}
\usepackage{amsthm}
\usepackage{dsfont}
\usepackage{empheq}
\theoremstyle{plain}
\newtheorem{theo}{theorem}
\begin{document}
\begin{theo}
One theorem.
\end{theo}
Some text.
\begin{proof}
One proof.
\end{proof}
\end{document}
In my code: I am looking for the theo-layout but with a sqare at its end.
