mdframed:相鄰區塊的連續背景

mdframed:相鄰區塊的連續背景

如果多個 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}

相關內容