まず,これが私の書いたものです.
\documentclass [english]{jsarticle}
\usepackage{amsthm}
\renewcommand{\thesection}{第\arabic{section}章}
\theoremstyle{plain}
\newtheorem{df}{Definition}[section]
\newtheorem{thm}[df]{Theorem}
\begin{document}
\section{Section}
\begin{df}
definition
\end{df}
\begin{thm}
theorem
\end{thm}
\end{document}
こうすると, Definition 第 1 章 .1. のように表示されてしまいますが,これをsectionの名前の変更前のように Definition 1.1. のように表示したいのです.色々と調べましたが,知識不足のため解決できませんでした.よろしくお願いします.