Tcolorbox ソース ボックスの外側

Tcolorbox ソース ボックスの外側

tcolorbox を使用してボックスの外側にソースを挿入する方法。私の場合は、ボックスを複数のページに分割します。

ここに画像の説明を入力してください

私の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}

関連情報