tcb 정리 내 및 단락 사이의 간격 조정

tcb 정리 내 및 단락 사이의 간격 조정

참고로 이것은 내 현재 tcbtheorem 블록입니다.

\newtcbtheorem[number within=section, list inside = theoremlist, list type = thrm]{thrm}{Theorem}%
{enhanced, breakable,
colback=r!7, colbacktitle=r!17, coltitle=RedViolet,
frame hidden, parbox=false,
arc=1.85pt, titlerule=0pt, toptitle=2pt, bottomtitle=2pt,
fonttitle=\bfseries,separator sign= : \hspace{0.005cm},
segmentation style={solid, draw=r!55, line width=1pt},
before upper=\csname @nobreakfalse\endcsname, halign=left
}{th}

이 환경과 일반적인 문서에서 단락 사이의 간격을 더 크게 만들려면 어떻게 해야 합니까? 그리고 tcbline과 증명 사이의 공간을 어떻게 더 작게 만들 수 있습니까?

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

다음은 테스터 코드입니다.

\documentclass{article}

\usepackage[many]{tcolorbox}
\usepackage[dvipsnames]{xcolor}
\usepackage{amsmath}
\usepackage{amssymb}
\usepackage{amsfonts}
\usepackage{amsthm}


\newtcbtheorem[number within=section, list inside = theoremlist, list type = thrm]{thrm}{Theorem}%
{enhanced, breakable,
colback=Red!7, colbacktitle=Red!17, coltitle=Black,
frame hidden, parbox=false,
arc=1.85pt, titlerule=0pt, toptitle=2pt, bottomtitle=2pt,
fonttitle=\bfseries,separator sign= : \hspace{0.005cm},
segmentation style={solid, draw=Red!55, line width=1pt},
before upper=\csname @nobreakfalse\endcsname, halign=left
}{th}


\begin{document}
Testing out the spacing.

Hello. 

\begin{thrm}{Test}{}
His

this is a test 

\tcbline
\begin{proof}
Test

This is not enough space between lines.
\end{proof}
\end{thrm}
\end{document}

관련 정보