tcolorbox 不会在页面末尾中断

tcolorbox 不会在页面末尾中断

我开始使用“证明”环境来证明一个定理:

\documentclass[12pt,a4paper]{article}  
\usepackage{amsmath}  
\usepackage{amsthm}  
\usepackage{amssymb}    
\usepackage{afterpage}  
\usepackage{tcolorbox}  
\usepackage{enumerate}  
\begin{document}   
\begin{tcolourbox}   
   text  
\begin{proof}  
\begin{enumerate}[i.]  
    text  
\end{enumerate}  
\end{proof}  
\end{tcolorbox}   
\end{document} 

但是证明太长了,框越过了页码(页脚),但没有在下一页移动,就像 这

答案1

\tcbuselibrary{breakable}支持自动中断 tcolorbox。请参阅https://www.ctan.org/pkg/tcolorbox

相关内容