更改 \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 的任何寬度參數,因此歡迎幫助。

相關內容