尽管有一些不同的命令,我的盒子还是拒绝同意相同的高度。以下是清晰的代码:
\documentclass{standalone}
\begin{document}
\usepackage[most]{tcolorbox}
\begin{tcbraster}[raster columns=2, sharp corners,
raster equal height, raster column skip=-0.5mm]
\begin{tcolorbox}[height fill, colback=blue!30, width = 0.3\textwidth,title = Title]
Column1 \\ \\
\end{tcolorbox}
\begin{tcolorbox}[height fill]
Column2
\end{tcolorbox}
\end{tcbraster}
\end{document}
尽管高度填充我觉得这些箱子没有接地,而是偏移了
编辑我还发现编译两次可以修复高度
答案1
\documentclass{article}
\usepackage[most]{tcolorbox}
\usepackage{lipsum,multicol}
\usepackage{microtype}
\begin{document}
\begin{tcolorbox}[breakable,size=small,
colback=gray!15,colframe=cyan!75!black,fonttitle=\bfseries,
title=Box with 2 columns,bottom=2mm]
\begin{multicols}{2}
\lipsum[1]
\end{multicols}
\end{tcolorbox}
\begin{tcolorbox}[breakable,size=small,
colback=gray!15,colframe=cyan!75!black,fonttitle=\bfseries,
title=Box with 3 columns,bottom=1mm]
\begin{multicols}{3}
\lipsum[3-5]
\end{multicols}
\end{tcolorbox}
\end{document}