答案1
这其实很容易实现。它只是 tcolorboxes。例如:你的盒子有这个最基本的代码:
\documentclass[12pt,a4paper]{article}
\usepackage{lipsum}
\usepackage{tcolorbox}
\tcbuselibrary{skins}
\tcbuselibrary{fitting}
\definecolor{myblue}{RGB}{0,163,243}
\newtcboxfit{mybox}[1]{colback=blue!5!white,colframe=white,left=1mm,top=1mm,bottom=1mm,
right=1mm,boxsep=0mm,width=3.5cm,height=7cm,nobeforeafter,
before upper=\textcolor{myblue!75!white}{\rule{1.5mm}{1.5mm}}\ ,
fonttitle=\bfseries,adjusted title=#1,fit algorithm=#1}
\begin{document}
\mybox{fontsize}{\lipsum[2]}
\end{document}
它受到 tcolorbox 包文档第 430 页的启发,如下所示:
使用 \hfill 你可以将两个或多个元素并排放置。
当您查看 newtcboxfit 时,您会看到 -part width=3.5cm,height=7cm
。在那里您可以更改框的大小,这意味着您需要创建一个新的\newtcboxfit{mybox2}
。其余的由您决定。它很简单,就是 tcolorbox。