What I want is like this:
(1.1) Theorem. blabla...
I have used ntheorem package to interchange the number of a theorem and its name. Then, how to put the bracket around the number?
\documentclass{book}
\usepackage{amsmath}
\usepackage[amsmath,thmmarks]{ntheorem}
\theoremstyle{change}
\theorembodyfont{\itshape}
\newtheorem{thm}{Theorem}[section]
\begin{document}
\chapter{A Chapter}
\section{A section}
\begin{thm}
A theorem.
\end{thm}
\end{document}