Search found 2 matches

by bugmenot2
Sun Aug 08, 2010 7:00 pm
Forum: Math & Science
Topic: amsthm: How to put a horizontal rule after theorem env.
Replies: 2
Views: 3810

amsthm: How to put a horizontal rule after theorem env.

Quite simple. Thank you!

Edit: Ok. Figured out what went wrong in my approaches: My first one would have worked had I used \def and \let:
\let\oldendtheorem\endtheorem
\def\endtheorem{MyStuff. \oldendtheorem}
My second one needs \makeatletter:
\makeatletter
\def\@endtheorem{\hfill\rule{3ex}{0 ...
by bugmenot2
Sun Aug 08, 2010 3:01 pm
Forum: Math & Science
Topic: amsthm: How to put a horizontal rule after theorem env.
Replies: 2
Views: 3810

amsthm: How to put a horizontal rule after theorem env.

Hi,

I'm using amsthm for typesetting theorems. Now I want to put a horizontal rule below "theorem"-Environments. I know how to place rules, what I don't know is how to tell amsthm to write something below each theorem-Environment. The \newtheoremstyle command isn't of any help here, since it does ...