여러 mdframed 블록이 서로 옆에 있는 경우 연속적인 배경과 테두리를 가질 수 있습니까? 예는 다음과 같습니다.
격리된 블록이 나머지 텍스트와 약간의 간격을 갖기를 원하기 때문에 사이에 공백이 있는 것으로 나타납니다. 내가 원하는 것은 서로 옆에 있고 스타일이 같은 경우 배경과 테두리가 다음과 같이 확장된다는 것입니다. (Photoshop에서 편집됨)
지금 가지고 있는 코드입니다
\documentclass[11pt, a4paper]{article}
\usepackage[utf8]{inputenc}
\usepackage{amsthm}
\usepackage{mdframed}
\usepackage{xcolor}
\newtheoremstyle{definition-style}
{}
{}
{}
{}
{\bf\sffamily}
{.}
{.5em}
{\thmname{#1}\thmnumber{ #2}\thmnote{ (#3)}}
\mdfdefinestyle{ndef-frame}{
linewidth=1pt, %
linecolor= gray, %
backgroundcolor= gray!5,
topline=false, %
bottomline=false, %
rightline=false,%
leftmargin=0pt, %
innerleftmargin=1em, %
innerrightmargin=1em,
rightmargin=0pt, %
innertopmargin=1.5em,%
innerbottommargin=1em, %
splittopskip=\topskip, %
%splitbottomskip=\topskip, %
}%
\surroundwithmdframed[style=ndef-frame]{ndef}
\theoremstyle{definition-style}
\newtheorem{ndef}{Definición}[section]
\begin{document}
\begin{ndef}[Name] Text
\end{ndef}
\begin{ndef}[Name] Text
\end{ndef}
\end{document}