我需要重新创建与本页建议的框架相同的框架
唯一的例外是添加带有白色背景的字幕。例如
阶级教育
白色背景的字幕
文字 文字 文字
我还需要添加多个字幕并将文本分布在多个页面上。有什么想法吗?
答案1
而是使用 tcolorbox:
\documentclass{article}
\usepackage[most]{tcolorbox}
\usepackage{lipsum}
\begin{document}
\begin{tcolorbox}[title={Klassenbildung},breakable,arc=0mm,outer arc=0mm,colbacktitle=lightgray!50!white,coltitle=black,colframe=gray,fonttitle=\bfseries,colback=white,subtitle style={colback=white}]
\vspace{-1.3\baselineskip}
\tcbsubtitle{Subtitle with white background}
\lipsum[2]
\tcbsubtitle{Another subtitle with white background}
\lipsum
\end{tcolorbox}
\end{document}