[Tex/LaTex] rename theorem environment to proposition

formattingsectioningtheorems

How can I rename the theorem environment to proposition? In other words, I would like to print:

Proposition 1 instead of Theorem 1/Lemma 1, etc

Thanks in advance

PS: I am using koma-script article

Best Answer

\newtheorem{prop}{Proposition}

in your preamble, then

\begin{prop}
Blah blah
\end{prop}

in the body of the document.