とりあえずコードを提示してしまいます.
---
\documentclass{jsarticle}
\usepackage{amsthm}
\theoremstyle{definition}
\newtheorem{thm}{定理}[section]
\renewcommand{\presectionname}{\S}
% \renewcommand{\thesection}{\arabic{section}}
\begin{document}
\section{ほげ}
\begin{thm}
あああ
\end{thm}
\end{document}
---
このコードをコンパイルすると,「§1 ほげ」「定理 §1.1. あああ」となるのですが,
これを「§1 ほげ」「定理 1.1. あああ」となるようにしたいです.
プリアンブルの最後のコメントを外すと今度は「1 ほげ」「定理 1.1. あああ」となってうまくいきません.
amsthmが\begin{thm}で呼び出している\thesectionをなんとかして
\arabic{section}にすればうまくいきそうなものですが,
やりかたがよく分かりませんでした.
よろしくお願いします.