I would like to ask the following:
I would like to use the theorem environment in my latex code. I also have some definitions and examples and I would like to let these environments look the same. Therefore, I produced the code below.
My problem is now, that I would like to display examples without indent, but when I do it as I did in the code below, I get a huge vertical whitespace between the word "Examples" and the first example.
Is it possible to avoid the whitespace and at the same time to have no indent?
Thanks for the help!
\documentclass[a4paper]{scrartcl}
\usepackage[english]{babel}
\usepackage[latin1]{inputenc}
\usepackage{amsmath}
\usepackage{amsthm}
\usepackage{paralist}
\newtheoremstyle{dotless}{}{}{}{}{\bfseries}{}{\newline}{}
\theoremstyle{dotless}
\newtheorem{Definition}{Definition}
\newtheorem*{Examples*}{Examples}
\begin{document}
\begin{Definition}
Here comes a definition.
\end{Definition}
\begin{Examples*}
\
\begin{enumerate}[1)]
\item First example.
\item Second example.
\item Third example.
\end{enumerate}
\end{Examples*}
\end{document}


