I have defined a newtheorem style and I want to shift the theoreme a little bit below from the rest, but I don't get it right.
I have something like this :
\documentclass{book}
\usepackage{xcolor}
\usepackage{amsthm}
\newtheoremstyle{Marine}% name
{3pt}% Space above
{3pt}% Space below
{}% Body font
{}% Indent amount
{}% Theorem head font
{:}% Punctuation after theorem head
{\newline}% Space after theorem head
{\underline{\thmname{#1}\thmnumber{ #2}}\thmnote{ \textcolor{red}{ (#3)}}}% Theorem head spec (can be left empty, meaning ‘normal’)
\theoremstyle{Marine}
\newtheorem{definition}{Definition}[section]
How can I get this to work?