[Tex/LaTex] Changing style of Proof

amsthmformattingtheorems

I'm using the \begin{proof} of the amsthm package. And I want to change the style of the Proof word that is added in the beginning. By default it is italic, I want to make it bold. How can I do it?

Best Answer

How about:

\renewenvironment{proof}{{\bfseries Proof}}{*something*}

*something* - something to be executed after environment argument is processed (possibly empty).

More here: http://en.wikibooks.org/wiki/LaTeX/Customizing_LaTeX.