Hi,
how can I have two definitions after eachother in AMS-article. I wan't
to have somthing like this:
Definition 1. My 1st definition
Definition 2. My 2nd definition
If i just press enter after my 1st definition I just continue to write
in the 1st environment so I don't get Definition 2. If I change the
environment depth I can get Definition 2. to appear but it produces the
following LaTeX code:
\begin{defn}
My 1st definition
\begin{defn}
My 2nd definition
\end{defn}
\end{defn}
and what I wan't is
\begin{defn}
My 1st definition
\end{defn}
\begin{defn}
My 2nd definition
\end{defn}
How can I achieve that?
Otto