tcolorbox
次のようなレイアウトにしたい es が3 つあります。
パッケージを使用して、最初のボックスと2番目のボックスのタイトルを揃えることができますadjustbox
(ここ) ですが、3 番目のボックスを 2 番目のボックスの下に配置する方法がわかりません。
現在の最善の努力により、次のようになります。
コード:
\documentclass{article}
\usepackage{tikz, adjustbox}
\usepackage[most]{tcolorbox}
\begin{document}
\begin{centering}
\tcbset{colback=blue!5!white,colframe=blue!75!black,fonttitle=\bfseries, width = 6cm}
\begin{tcolorbox}[title = First box,before=\adjustbox{valign=t}\bgroup, after=\egroup]
\begin{itemize}
\item A
\item B
\item C
\item D
\item E
\end{itemize}
\end{tcolorbox}
\tcbset{colback=red!5!white,colframe=red!75!black,fonttitle=\bfseries, width = 5cm}
\begin{tcolorbox}[title = Second box,before=\adjustbox{valign=t}\bgroup, after=\egroup]
\begin{itemize}
\item F
\end{itemize}
\end{tcolorbox}
\tcbset{colback=green!5!white,colframe=green!75!black,fonttitle=\bfseries, width = 5cm}
\begin{tcolorbox}[title = Third box]
\begin{itemize}
\item G
\item H
\item I
\item J
\end{itemize}
\end{tcolorbox}
\end{centering}
\end{document}
答え1
ここで を試してみますrasters
。高さを指定する必要があり、2 番目と 3 番目のボックスが別の に取り込まれるため、完全に自動ではありません。tcolobox
改善の余地はありますが、これは出発点として役立つはずです。
\documentclass{article}
\usepackage[most]{tcolorbox}
\begin{document}
\begin{tcbraster}[raster equal height,raster valign=top,raster columns=2, raster rows=1,
colframe=red!50!black,colback=red!10!white,colbacktitle=red!50!white,
]
\begin{tcolorbox}[title = First box,colback=blue!5!white,colframe=blue!75!black,fonttitle=\bfseries,height=8.05cm, width = 6cm]
\begin{itemize}
\item A
\item B
\item C
\item D
\item E
\end{itemize}
\end{tcolorbox}
\begin{tcolorbox}[boxsep=0pt,boxrule=0pt,colback=white,colframe=white,enhanced jigsaw,left=0mm,right=0mm,top=0mm,bottom=0mm]
\begin{tcolorbox}[title = Second box,colback=red!5!white,colframe=red!75!black,fonttitle=\bfseries,height=2cm, width = 5cm]
\begin{itemize}
\item F
\end{itemize}
\end{tcolorbox}
\begin{tcolorbox}[title = Third box,colback=green!5!white,colframe=green!75!black,fonttitle=\bfseries, height=6cm, width = 5cm,before=\par\vspace{-0.2\baselineskip}]
\begin{itemize}
\item G
\item H
\item I
\item J
\end{itemize}
\end{tcolorbox}
\end{tcolorbox}
\end{tcbraster}
\end{document}