\newtheoremstyle 내에서 너비 변경

\newtheoremstyle 내에서 너비 변경

나는 음영 처리된 상자로 둘러싸인 새로운 정리 환경을 정의했습니다. 내 코드는 다음과 같습니다

\usepackage{xcolor}
\usepackage{amsthm}
\usepackage{framed}
\colorlet{shadecolor}{gray!50}
\newtheoremstyle{mythm}
    {0.3\topsep} % space above
    {0.3\topsep} % space below
    {} % body font
    {} % indentation
    {\bfseries} % theorem head font
    {.} % punctuation after theorem head
    { } % space after theorem head
    {} % head spec

\theoremstyle{mythm}
\newtheorem{theorem}{משפט}
\renewenvironment{thm}
   {\begin{shaded}\begin{theorem}}
   {\end{theorem}\end{shaded}}

(나는 정리를 뜻하는 히브리어 단어 שפת를 사용하고 있습니다). 이제 thm 환경을 사용하면 다음과 같습니다.

여기에 이미지 설명을 입력하세요

보시다시피, 상자 내부의 선 너비는 일반 선의 너비와 일치합니다. 내 질문은: 너비가음영처리된 상자 자체일반 선의 너비와 일치합니까?
newtheoremstyle의 너비 매개변수를 찾을 수 없으므로 도움을 받으실 수 있습니다.

관련 정보