I am using an continuous example in my text, but I don't know how to do define the corresponding nice environment.
I am using the amsmath and ntheorem package and defined my own example-environment:
\newtheorem{theorem}{Theorem}[chapter]
\newtheorem{example}[theorem]{Example}
I am using the following documentclass:
\documentclass[11pt,a4paper,twoside,openright]{book}
What I would like is a possibility to continue the example maybe like this
\begin{example} \label{ex1}
This is an example.
\end{example}
Some text stands here. And then there is some space between this and the continued example.
Further should the continued example not be intended but start at the beginning of the line.
\begin{continuance}[\ref{ex1}]
This is the continued example.
\end{continuance}
Some more text, which should follow after a little vertical space.
With the result:
Example 1.1 This is an example.
Some text stands here. And then there is some space between this and the continued example. Further should the continued example not be intended but start at the beginning of the line.
Continuance of Example 1.1 This is the continued example.
Some more text, which should follow after a little vertical space.
How can I define this continuance-environment?
Edit: The problem now is that it looks like this
Example 1.1 This is an example.
Some text stands here. And then there is some space between this and the continued example.
Further should the continued example not be intended but start at the beginning of the line.
[Here is an indention] Continuance of Example 1.1 This is the continued example.
Some more text, which should follow after a little vertical space.

ntheorem:) – egreg Aug 26 '12 at 18:03