Tcolorbox-Quelle außerhalb der Box

Tcolorbox-Quelle außerhalb der Box

So fügen Sie mithilfe von tcolorbox eine Quelle außerhalb von Boxen ein. In meinem Fall wird die Box auf mehrere Seiten aufgeteilt.

Bildbeschreibung hier eingeben

MEIN MWE:

\documentclass{book} 
\RequirePackage{lipsum} 
\RequirePackage[breakable,hooks]{tcolorbox} 
\tcbuselibrary{breakable,skins} 
\makeatletter 
\newtcolorbox{Boxone}[2][]{% enhanced,
   boxrule=.2pt,boxsep=0pt,colframe=red,colback=gray, 
   enhanced,left=9pt,right=9pt,top=6pt,bottom=4pt, breakable,
   sharp corners, arc=15pt, rounded corners=northeast, 
   pad at break=9pt,bottomrule at break=0pt,toprule at break=0pt, 
  %freelance,
  height fixed for=all, } 
\begin{document} 
\begin{Boxone}{Example 1.4} 
\lipsum[1-40] 
\end{Boxone} 
\end{document}

verwandte Informationen