I want to have an environment for strategies. So far I used the package ntheorem to define such an environment.
I use it like this:
\begin{strategy}[bla]
bla bla
\end{strategy}
And get:
<surrounding text>
Strategy 1 (Bla):
bla bla
<surrounding text>
Which is what I want except that I would like to group the numbering of the strategies with by me specified prefixes, like LD.1,..LD.5 and I.1,..I.3 and so on:
<surrounding text>
Strategy A.1 (bla):
bla bla
more bla bla
<surrounding text>
So, the word Strategy my prefix and a short description an a non-indented line, then the strategy text indented. Also I would like a little space above and below the strategy.
Is it possible to use ntheorem in such a way:
\begin{strategy}[prefix][bla]
bla bla
\end{strategy}
Or has anybody another idea. I do not need to use ntheorem. It was just the first idea I had.
I use ntheorem for other environements, so they should work together.


