[Tex/LaTex] Tweaking \theoremstyle

indentationtheorems

Well I want to do is when LaTeX writes Theorem at the new line instead of the left side of the page it be a little indented. In other words I want it to start from a little bit to the right.

Best Answer

Use the ntheorem package.

\usepackage{ntheorem}
\setlength\theoremindent{\parindent}
\newtheorem{thm}{Theorem}

Now the thm environment will be indented the same amount as a paragraph.