I would like to align text boxes and draw arrows between them. My current attempt is the following:
\documentclass[crop,tikz]{standalone}
\usepackage[most]{tcolorbox}
\begin{document}
\begin{minipage}[t]{\textwidth}
\begin{tcolorbox}[colback=white, boxrule=0pt, width=\textwidth]
$\quad$\textbf{Work package overview:}
\end{tcolorbox}
\begin{minipage}[t]{\textwidth}
\begin{tcolorbox}[colback=white, colframe=black, arc=0pt, outer arc=0pt, width=\textwidth, remember as=ci]
test
\end{tcolorbox}
\end{minipage}
\begin{minipage}[t]{0.495\textwidth}
\begin{tcolorbox}[colback=white, colframe=black, arc=0pt, outer arc=0pt, width=\textwidth]
First text box
\end{tcolorbox}
\end{minipage}
\hfill
\begin{minipage}[t]{0.495\textwidth}
\begin{tcolorbox}[colback=white, colframe=black, arc=0pt, outer arc=0pt, width=\textwidth, remember as=adm]
Second text box\
test
\end{tcolorbox}
\end{minipage}
\begin{minipage}[t]{\textwidth}
\begin{tcolorbox}[colback=white, colframe=black, arc=0pt, outer arc=0pt, width=\textwidth]
test
\end{tcolorbox}
\end{minipage}
\end{minipage}
\end{document}
The result almost looks correct, but if one box is vertically longer than another, it should be aligned with the top border of the neighbouring box instead of the bottom one.
I would like to be able to do this for a variable number of boxes next to each other as well as above and below of each other.
Arrows should be somewhat like that:
the arrows as well as working with remember as (and enhanced?) did something weird with the result. But was not recognised by the tikz arrows.



documentenvironment. – samcarter_is_at_topanswers.xyz Mar 12 '24 at 11:44TikZ Library chainshttps://tikz.dev/library-chains – pascal974 Mar 12 '24 at 12:12\usepackage[most]{tcolorbox} \usepackage{graphicx} % Required for inserting images
\begin{document} ` should be obvious, shouldn't it?
– baxbear Mar 12 '24 at 12:27