tcolorbox[breakable] 在 overleaf 中不会中断

tcolorbox[breakable] 在 overleaf 中不会中断

以下代码在 Overleaf 中生成了三层嵌套框。由于每个框可以包含大量文本,我需要根据需要将它们分隔到多个页面之间;但只有一些框可以分隔,而其他框会溢出页面,导致无法阅读。

我尝试了很多解决方案,包括评论中的建议这个未解决的帖子

任何想法?

\documentclass[10pt,twoside, a4paper]{article}
\usepackage[most]{tcolorbox}
\tcbuselibrary{skins,xparse,breakable}
\tcbset{%
    breakable,
    title filled=false}
\usepackage{lipsum}
\begin{document}
\large {\textbf{Table 1.} Caption.}
\begin{tcolorbox}[breakable, enhanced, colback=white]
\centering\textbf{\Large Title}
\begin{tcolorbox}[breakable, enhanced, colback=gray!20]
{\textbf{Intro}\newline}
\lipsum[1]
\end{tcolorbox}
\begin{tcolorbox}[breakable, enhanced, colback=yellow!50]
{\textbf{First Section}\newline}
\lipsum[2]
\begin{tcolorbox}[breakable, enhanced, colback=blue!20]
{\textbf{Subsection 1.1}\newline}
\lipsum[3-5]
\end{tcolorbox}
\begin{tcolorbox}[breakable, enhanced, colback=gray!20]
{\textbf{Subsection 1.2}\newline}
\lipsum[6-7]
\end{tcolorbox}
\end{tcolorbox}
\end{tcolorbox}
\end{document}

相关内容