I am trying to make an outline for my work and I thought this might be a very good one. However, I failed to add a list under each category.
This question explains how to include a table in smartdiagram, yet the same thing failed for me.
Here is a MWE. It is actually copy paste of the two linked questions. It returns Something is wrong, perhaps a missing \item. Since this is a very general error message I cannot proceed any further.
\documentclass[border=100]{standalone}
\usepackage[rgb]{xcolor}
\usepackage{tikz}
\usepackage[utf8]{inputenc}
\usepackage{smartdiagram}
\usesmartdiagramlibrary{additions}
% xcolor manual: 34
\definecolorseries{colours}{hsb}{grad}[hsb]{.575,1,1}{.987,-.234,0}
\resetcolorseries[12]{colours}
\begin{document}
\newsavebox\outputbox
\sbox\outputbox{%
\begin{itemize}
\item Corr
\item Corr2
\end{itemize}
}
\centering
\smartdiagramset{
set color list={red!10, red!30,red!50},
sequence item border color=black,
sequence item text color=black,
sequence item border size=1.2\pgflinewidth,
sequence item font size=\scriptsize\sffamily,
additions={
additional item shape=rectangle,
additional item fill color=colours!!+!20,
additional item border color=colours!!,
additional arrow line width=2pt,
additional arrow tip=to,
additional arrow color=black,
additional item font=\scriptsize\sffamily,
}
}
\smartdiagramadd[sequence diagram]{step 1,step 2, step 3}
{below of sequence-item1/a \usebox{\outputbox} ,below of sequence-item2/output 1,below of sequence-item3/output 2}
\smartdiagramconnect{-to}{sequence-item1/additional-module1}
\smartdiagramconnect{-to}{sequence-item2/additional-module2}
\smartdiagramconnect{-to}{sequence-item3/additional-module3}
\end{document}
Thanks!
