By default, theorems (using amsthm) are printed like Theorem 1.1. Is it possible to print them as 1.1. Theorem? I have the following:
\documentclass{article}
\usepackage{amsmath, dsfont, amsthm , enumerate, graphicx, tikz,stmaryrd}
\newtheoremstyle{stelling}
{\topsep} % ABOVESPACE
{\topsep} % BELOWSPACE
{\itshape} % BODYFONT
{0pt} % INDENT (empty value is the same as 0pt)
{\large\bfseries} % HEADFONT
{.} % HEADPUNCT
{5pt plus 1pt minus 1pt} % HEADSPACE
{} % CUSTOM-HEAD-SPEC
\theoremstyle{stelling}
\newtheorem{theorem}[subsection]{Stelling}
\begin{document}
\begin{theorem}
Some text
\end{theorem}
\end{document}
\documentclass{...}and ending with\end{document}. – jub0bs Oct 29 '13 at 15:45\thetheorem. Theoremas the last argument of\newtheoremstyle– karlkoeller Oct 29 '13 at 15:58\swapnumbersto the preamble. – egreg Oct 29 '13 at 16:22