[Tex/LaTex] Creating a Postulate Environment

environmentstheorems

I understand how to use the theorem environment in LaTex and would like to know if there is a similar environment for postulates or how I can make an environment for postulates on my own.

Best Answer

\newtheorem{post}{Postulate}

or

\newtheorem{post}{Postulate}[chapter] (or [section])

in the preamble should be enough. Now you can use packages, such as amsthm or ntheorem to customise the layout of this new environment.