
thmbox 패키지를 사용하고 있습니다. 나는 내 정리 중 일부를 thmbox 모양으로 만들고 다른 정리는 전통적인 정리 모양을 갖도록 하는 방법을 찾으려고 노력하고 있습니다.
[S]
내 문제는 다른 thmbox 스타일이 "빈" 스타일을 포함하지 않는 것 같다는 것입니다(내가 아는 한 , [M]
및 스타일 만 있음 [L]
).\usepackage[nothm]{thmbox}
모두정리는 전통적인 정리 모양을 가지고 있습니다.
답변1
amsthm
패키지보다 먼저 패키지를 로드 하고 에 의해 재정의되기 전에 thmbox
명령을 정의할 수 있습니다 .\newemptytheorem
\newtheorem
\newtheorem
thmbox
\documentclass{article}
\usepackage{amsthm}
\let\newemptytheorem\newtheorem
\usepackage{thmbox}
\newemptytheorem{emptythm}{Theorem}
\newtheorem{boxedthm}[emptythm]{Theorem}
\begin{document}
\begin{emptythm}
A theorem in an "empty" style.
\end{emptythm}
\begin{boxedthm}
A theorem in a \textnormal{\texttt{thmbox}} style.
\end{boxedthm}
\end{document}